c语言 实现函数动画
请问 "graphics.h"这个库怎么在 Dev c++ 中调用?还有,这个代码哪里出了问题,为什么运行不了?
#include "conio.h"
#include "math.h"
#include "graphics.h"
void delay(int sec){
for(int i = 0; i < sec; i++);
}
int main()
{
int x=0;
int y=239;
int i,j,h;
double m;
int driver,mode;
driver=VGA;
mode=VGAHI;
initgraph(&driver,&mode,"");
setbkcolor(9);
setcolor(BLUE);
line(317,0,317,479);
line(0,239,639,239);
for(i = 1;; i++)
{
for(j=0;j<640;j++)
{
m=sin(j/50.5);
h=y-(int)(m*100);
if(i % 2== 1)
putpixel(x+j,h,RED);
else
putpixel(x+j,h,9);
delay(1000000);
}
}
closegraph();
return 0;
}
本帖最后由 rt3 于 2020-12-12 17:37 编辑
页:
[1]