VC ++中 怎么没这个库函数啊??
graphics.h
我想要那该怎么办啊??
VC ++中 怎么没这个库函数啊??
graphics.h
我想要那该怎么办啊??
那楼上的你看看,下面的程序有问题吗??
那个textcolor 要用什么头文件的啊??
#include<conio.h> #include<stdio.h>
void main() { int NUM,I; struct STUDENT { char NAME[30]; int AGE; char ID[10]; }; struct STUDENT STD[100];
clrscr(); textcolor(LIGHTBLUE); cprintf("\nHow many student do you have? Input the number:"); scanf("%d",&NUM); textcolor(CYAN); for(I=1;I<=NUM;I++) { cprintf("\nInput student %d -- name:",I); scanf("%s",&STD[I-1].NAME); cprintf("\nInput student %d -- age:",I); scanf("%d",&STD[I-1].AGE); cprintf("\nInput student %d -- ID:",I); scanf("%s",&STD[I-1].ID); } textcolor(YELLOW); cprintf("\nTo see the RESULT,Press Any Key... ..."); getch(); textcolor(WHITE); for(I=1;I<=NUM;I++) { printf("\n student %d -- name:%s",I,STD[I-1].NAME); printf("\n student %d -- age:%d",I,STD[I-1].AGE); printf("\n student %d -- ID:%s",I,STD[I-1].ID); } textcolor(YELLOW); cprintf("\nPress Any Key To EXIT... ..."); getch(); }
哦,是这样的啊!!
那不用了!!我还是用VC的好了!!!
我现在可以编写一些小程序,比如计算器...
但我现在很迷茫,不知道该干什么了??能指点一下吗、?
或是我本身的基本水平还不太坚实,还要继续努力◎◎
[此贴子已经被作者于2004-10-01 10:17:48编辑过]