本文介绍了Windows 7下的tc ++中的图形的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨我尝试在Turbo C ++环境中运行图形程序(我的计算机中的系统是Windows 7):

HiI try to run my graphic program in the Turbo C++ environment (the system in my computer is windows 7):

#include<graphics.h>
#include<stdio.h>
#include<math.h>
#include<conio.h>
#define pi 3.1415

int main (void)
{
int gdriver=DETECT,gmode,errorcode;
int x,y, pcolor;
double angle,sinofA;
initgraph(&gdriver,&gmode,"..//bgi");
setcolor(6);
line(0,100,200,100);
for(x=0;x<200;x++)

{

angle=((double)x/200)*(2*pi);

sinofA=sin(angle);

y=100+100*sinofA;

putpixel(x,y,9);

}

getch();

closegraph();

return 0;

}


显示以下错误:
该系统不支持全屏模式.


The following Error showed:
This system does not support full screen mode.

推荐答案




这篇关于Windows 7下的tc ++中的图形的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 15:16