c语言绘图
各位大神 ,程序运行不了。不知道怎么回事 ?谁能帮忙看一下。#include<stdio.h>
#include<graphics.h>
int main()
{
int dirver, mode, i;
float j = 1, k = 1;
dirver = VGA;
mode = VGAHI;
initgraph(&dirver, &mode, "");
setbkcolor(YELLOW);
for (i = 0; i <=25; i++)
{
setcolor(8);
circle(310, 325, k);
k = k + j;
j = j + 0.3;
}
getchar();
return 0;
} 那是turbc可以运行的程序. 你的编译器没头文件吧 那可以在c上运行吗 百度graphics.h下载头文件,然后将.h文件放到VC 6.0 的头文件库中。 0.0 下载头文件graphics.h Johnwang522 发表于 2015-11-10 16:34
百度graphics.h下载头文件,然后将.h文件放到VC 6.0 的头文件库中。
谢谢啊
页:
[1]