回复 8楼 rjsp
我用VC6,用VS2010也是出那样的错误。但是把time_t移上去,就好了。
回复 11楼 列车永不停息
你把完整的错误信息贴出来看看,因为我觉得出现“'exit' : undeclared identifier”是不可能的。#include <stdio.h> #include <stdlib.h> #include <tchar.h> #include <conio.h> #include <graphics.h> void main() { int k; k=rang()%3+1; initgraph(450, 450); setbkcolor(BLUE); cleardevice(); setcolor(RED); setlinestyle(PS_SOLID|PS_JOIN_ROUND,1);//设置当前画线样式 if(k==1) { setfillcolor(YELLOW); bar(40,40,60,60); bar(20,20,40,80); rectangle(20,20,40,80);//矩形是由左上角的点,和右下角的点组成的! rectangle(40,40,60,60); } if(k==2) { setfillcolor(YELLOW); bar(20,20,40,100); rectangle(20,20,40,100); } if(k==3) { setfillcolor(YELLOW); bar(20,20,60,60); rectangle(20,20,60,60); } }