![]() |
#2
xiaomarn2010-12-07 17:34
|

#include <stdio.h>
#include <conio.h>
int main()
{
window(10,10,15,28);
textbackground(5);
clrscr();
textcolor(2);
highvideo();
clrscr();
gotoxy(6,3);
cprintf("%s","Welcome you to use load the system");
gotoxy(3,5);
cprintf("%s","name");
gotoxy(3,7);
cprintf("%s","password");
gotoxy(19,13);
cprintf("%s","load");
getch();
}
各位大侠看看,这是我编写的一个小程序,里面开了一个窗口,可是显示不了,总是显示在整个窗口上!!哪位大侠帮忙修改看看! #include <conio.h>
int main()
{
window(10,10,15,28);
textbackground(5);
clrscr();
textcolor(2);
highvideo();
clrscr();
gotoxy(6,3);
cprintf("%s","Welcome you to use load the system");
gotoxy(3,5);
cprintf("%s","name");
gotoxy(3,7);
cprintf("%s","password");
gotoxy(19,13);
cprintf("%s","load");
getch();
}