我是靠谱客的博主 合适画板,最近开发中收集的这篇文章主要介绍c语言坐标画折线,如何用C语言画折线图,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

满意答案

02ae427d08e371d7e90d5b995e828d6d.png

wzc_112233

2019.01.01

02ae427d08e371d7e90d5b995e828d6d.png

采纳率:48%    等级:7

已帮助:412人

去百度文库,查看完整内容>

内容来自用户:inmisandy #include

#include

#include

#define pi 3.1415926

void main()

{

int gdriver,gmode,i,j,m,a;

struct fillsettingstype save;

gdriver=DETECT;

initgraph(&gdriver,&gmode," ");

setbkcolor(0);

cleardevice();

setcolor(3);

settextstyle(1,0,5);

outtextxy(50,300,"I am from class JI KE 0903");

outtextxy(150,200,"xuehao");

outtextxy(70,100,"My name is *****");

getch();

cleardevice();

setlinestyle(0,0,3);

setfillstyle(1,4);

for(j=0;j<15;j++)

{

setcolor(j);

line(320,160,295,205);

line(320,160,345,205);

line(295,205,250,205);

line(345,205,390,205);

line(250,205,285,250);

line(390,205,355,250);

line(285,250,280,310);

line(355,250,360,310);

line(280,310,320,280);

line(360,310,320,280);

floodfill(320,240,j);

for(i=1;i<=40;i++)

{

for(m=0;m<=320;m=m+10)

{

line(320+(85+m)*cos(i*pi/20),240-(85+m)*sin(i*pi/20),320+(87+m)*cos(i*pi/20),240-(87+m)*sin(i*pi/20));

}

delay(15000);

}

}

cleardevice();

setbkcolor(10);

setcolor(9);

settextstyle(1,0,10);

outtextxy(20,160,"Goodbye!!!");

getch();

closegraph();

}

01分享举报

最后

以上就是合适画板为你收集整理的c语言坐标画折线,如何用C语言画折线图的全部内容,希望文章能够帮你解决c语言坐标画折线,如何用C语言画折线图所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部