提示有一个错误,在哪?
#include <graphics.h>#include <conio.h>
#include <math.h>
void main()
{
initgraph(640, 480);
int c;
double a;
int x, y, r=200;
for(a=0; a<PI*2; a+=0.0001)
{
x=(int)(r*cos(a) + 320 + 0.5);
y=(int)(r*sin(a) + 240 + 0.5);
c=(int)(a*255/(2*PI) + 0.5);
setcolor(RGB(c,0,0));
line(320, 240, x, y);
}
getch();
closegraph();
} 本帖最后由 Omega. 于 2021-3-6 14:05 编辑
用的VC6.0 直接看提示的错误是什么啊,有错误信息的啊
不会看也发出来啊
是这个错误吗:
fatal error C1083: Cannot open include file: 'graphics.h': No such file or directory 而且你还没定义PI
我现在才一级传不了附件,如果是我提到的那个错误,你就网上下一个EasyX的包,安装一下就能找到相应头文件了,然后代码里加一下对PI的定义
例如
#define PI 3.1415
然后就可以了
页:
[1]