跪求用c语言编程绘制椭圆并设置前景色和背景色!!!
发布网友
发布时间:2022-05-26 14:47
我来回答
共4个回答
热心网友
时间:2023-10-22 18:34
TC编译
#include "graphics.h"
int main()
{
int driver=DETECT,mode;
int x,y;
initgraph(&driver,&mode,"d:\\tc3\\bgi");
x=(getmaxx()+1)/2 ;
y= (getmaxy()+1)/2 ;
setbkcolor(BLUE);
setfillstyle(1,14);
fillellipse(x,y,50,100);
getchar();
closegraph();
return 0;
}
热心网友
时间:2023-10-22 18:34
textmode(C80);
textbackground(2);
textcolor(BLACK);
看这三个函数你能用不,括号里的数字也是设置颜色和风格的代码!!
热心网友
时间:2023-10-22 18:35
TC 中调用图象函数
热心网友
时间:2023-10-22 18:35
#include<graphics.h>