请教高手,这个程序为什么编译不能通过?编译器不能识别#include <graphics.h>函数。
#include<stdio.h>#include<stdlib.h>#include<graphics.h>#include<math.h>#include<dos.h...
#include <stdio.h>
#include <stdlib.h>
#include <graphics.h>
#include <math.h>
#include <dos.h>
#include <conio.h>
#include <stdarg.h>
#define MAXPTS 15
#define PI 3.1415926
struct PTS{
int x,y;
};
double AspectRatio=0.85;
void LineToDemo(void)
{
struct viewporttype vp;
struct PTS points[MAXPTS];
int i,j,h,w,xcenter,ycenter;
int radius,angle,step;
double rads;
printf("MoveTo/LineTo Demonstration");
getviewsettings(&vp);
h=vp.bottom - vp.top;
w=vp.right - vp.left;
xcenter=w/2;
ycenter=h/2;
radius=(h-30)/(AspectRatio * 2);
step=360/MAXPTS;
angle=0;
for(i=0;i<MAXPTS;i++)
{
rads=(double)angle * PI/180.0;
points.x=xcenter + (int)(cos(rads)*radius);
points.y=ycenter - (int)(sin(rads)*radius*AspectRatio);
angle +=step;
}
circle(xcenter,ycenter,radius);
for(i=0;i<MAXPTS;i++)
{
for(j=0;j<MAXPTS;j++)
{
moveto(points.x,points.y);
Lineto(points[j].x,points[j].y);
}
}
}
/*int*/ main(int argc, char *argv[])
{
int driver,mode;
driver=CGA;mode=CGACO;
initgraph(&driver,&mode,"");
setcolor(3);
setbkcolor(GREEN);
LineToDemo();
//system("PAUSE");
//return 0;
} 展开
#include <stdlib.h>
#include <graphics.h>
#include <math.h>
#include <dos.h>
#include <conio.h>
#include <stdarg.h>
#define MAXPTS 15
#define PI 3.1415926
struct PTS{
int x,y;
};
double AspectRatio=0.85;
void LineToDemo(void)
{
struct viewporttype vp;
struct PTS points[MAXPTS];
int i,j,h,w,xcenter,ycenter;
int radius,angle,step;
double rads;
printf("MoveTo/LineTo Demonstration");
getviewsettings(&vp);
h=vp.bottom - vp.top;
w=vp.right - vp.left;
xcenter=w/2;
ycenter=h/2;
radius=(h-30)/(AspectRatio * 2);
step=360/MAXPTS;
angle=0;
for(i=0;i<MAXPTS;i++)
{
rads=(double)angle * PI/180.0;
points.x=xcenter + (int)(cos(rads)*radius);
points.y=ycenter - (int)(sin(rads)*radius*AspectRatio);
angle +=step;
}
circle(xcenter,ycenter,radius);
for(i=0;i<MAXPTS;i++)
{
for(j=0;j<MAXPTS;j++)
{
moveto(points.x,points.y);
Lineto(points[j].x,points[j].y);
}
}
}
/*int*/ main(int argc, char *argv[])
{
int driver,mode;
driver=CGA;mode=CGACO;
initgraph(&driver,&mode,"");
setcolor(3);
setbkcolor(GREEN);
LineToDemo();
//system("PAUSE");
//return 0;
} 展开
4个回答
展开全部
你用的不是TC吧 <graphics.h> 是TC里面的图形库,如果要用的话应该用TC来编译,
追问
我用的就是tc2.0。
追答
菜单 -> Options -> Linker -> Graphics library 设置为 On。
事实看
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
是win 7的操作系统吗?
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你这种代码只能用TC来编
更多追问追答
追问
我用的就是tc2.0。
追答
难道你的TC设置的路径有问题,系统包含的INCLUDE目录设置不对? 不然不会不认识那个头文件啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
vc下貌似没有提供这个头文件
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询