当前位置: 首页 > news >正文

东莞怎样制作免费网页seo综合检测

东莞怎样制作免费网页,seo综合检测,武汉网站建设培训班,网站设计论文摘要目录 【程序56】题目:画图,学用circle画圆形 【程序57】题目:画图,学用line画直线。 【程序58】题目:画图,学用rectangle画方形。 【程序59】题目:画图,综合例子。 【程序60】题…

目录

【程序56】题目:画图,学用circle画圆形

【程序57】题目:画图,学用line画直线。

【程序58】题目:画图,学用rectangle画方形。

【程序59】题目:画图,综合例子。

【程序60】题目:画图,综合例子。   


【程序56】
题目:画图,学用circle画圆形

#include "graphics.h"
#include<conio.h>
int main()
{int  i;float j = 1, k = 1;initgraph(640, 480);setbkcolor(YELLOW);cleardevice();for (i = 0;i <= 25;i++){setlinestyle(PS_SOLID, 4);setlinecolor(BLUE);circle(310, 250, k);k = k + j;j = j + 0.3;}_getch();closegraph();//关闭窗口
}

 

【程序57】
题目:画图,学用line画直线。

#include "graphics.h"
#include<conio.h>
int main()
{int i;float x0, y0, y1, x1;float j = 12, k;initgraph(640, 480);setbkcolor(GREEN);cleardevice();x0 = 263;y0 = 263;y1 = 275;x1 = 275;for (i = 0;i <= 18;i++){setlinestyle(PS_SOLID, 4);setlinecolor(BLUE);line(x0, y0, x0, y1);x0 = x0 - 5;y0 = y0 - 5;x1 = x1 + 5;y1 = y1 + 5;j = j + 10;}x0 = 263;y1 = 275;y0 = 263;for (i = 0;i <= 20;i++){setlinestyle(PS_SOLID, 4);setlinecolor(BLUE);line(x0, y0, x0, y1);x0 = x0 + 5;y0 = y0 + 5;y1 = y1 - 5;}_getch();closegraph();//关闭窗口
}

 

【程序58】
题目:画图,学用rectangle画方形。

  
程序分析:利用for循环控制100 - 999个数,每个数分解出个位,十位,百位。

#include <graphics.h>
#include<conio.h>
int main()
{int x0, y0, y1, x1, i;initgraph(640, 480);setbkcolor(YELLOW);cleardevice();x0 = 263;y0 = 263;y1 = 275;x1 = 275;for (i = 0;i <= 18;i++){setlinestyle(PS_SOLID, 4);setlinecolor(BLUE);rectangle(x0, y0, x1, y1);x0 = x0 - 5;y0 = y0 - 5;x1 = x1 + 5;y1 = y1 + 5;}setcolor(2);circle(269, 269, 137);_getch();closegraph();//关闭窗口
}

 

【程序59】
题目:画图,综合例子。

# define PAI 3.1415926
# define B 0.809
# include "graphics.h"
#include "math.h"
#include<conio.h>
int main()
{int i, j, k, x0, y0, x, y;float a;initgraph(640, 480);setlinestyle(PS_SOLID, 3);setlinecolor(BLUE);setbkcolor(GREEN);cleardevice();x0 = 150;y0 = 100;circle(x0, y0, 10);circle(x0, y0, 20);circle(x0, y0, 50);for (i = 0;i < 16;i++){a = (2 * PAI / 16) * i;x = ceil(x0 + 48 * cos(a));y = ceil(y0 + 48 * sin(a) * B);setlinestyle(PS_SOLID, 3);setlinecolor(BLUE);line(x0, y0, x, y);}setcolor(3);circle(x0, y0, 60);/* Make 0 time normal size letters */_getch();setfillstyle(10, YELLOW);floodfill(202, 100, WHITE);_getch();for (k = 0;k <= 500;k++){setlinestyle(PS_SOLID, 4);setlinecolor(BLUE);for (i = 0;i <= 16;i++){a = (2 * PAI / 16) * i + (2 * PAI / 180) * k;x = ceil(x0 + 48 * cos(a));y = ceil(y0 + 48 + sin(a) * B);setlinestyle(PS_SOLID, 3);setlinecolor(BLUE);line(x0, y0, x, y);}for (j = 1;j <= 50;j++){a = (2 * PAI / 16) * i + (2 * PAI / 180) * k - 1;x = ceil(x0 + 48 * cos(a));y = ceil(y0 + 48 * sin(a) * B);line(x0, y0, x, y);}}restorecrtmode();_getch();closegraph();//关闭窗口
}

 

【程序60】
题目:画图,综合例子。
   

#include "graphics.h"
#include<conio.h>
#define LEFT 0
#define TOP 0
#define RIGHT 639
#define BOTTOM 479
#define LINES 400
#define MAXCOLOR 15
int main()
{int error=0;int x1, y1;int x2, y2;int dx1, dy1, dx2, dy2, i = 1;int count = 0;int color = 0;initgraph(640, 480);x1 = x2 = y1 = y2 = 10;dx1 = dy1 = 2;dx2 = dy2 = 3;while (!_kbhit()){line(x1, y1, x2, y2);x1 += dx1;y1 += dy1;x2 += dx2;y2 + dy2;if (x1 <= LEFT || x1 >= RIGHT)dx1 = -dx1;if (y1 <= TOP || y1 >= BOTTOM)dy1 = -dy1;if (x2 <= LEFT || x2 >= RIGHT)dx2 = -dx2;if (y2 <= TOP || y2 >= BOTTOM)dy2 = -dy2;if (++count > LINES){setlinestyle(PS_SOLID, 0);setlinecolor(BLUE);color = (color >= MAXCOLOR) ? 0 : ++color;}}closegraph();_getch();closegraph();//关闭窗口
}


文章转载自:
http://wanjiasinistrorse.xhqr.cn
http://wanjiapolder.xhqr.cn
http://wanjianomocracy.xhqr.cn
http://wanjiaimpartially.xhqr.cn
http://wanjiasubmergible.xhqr.cn
http://wanjiazoroaster.xhqr.cn
http://wanjiaqueenright.xhqr.cn
http://wanjiastoutly.xhqr.cn
http://wanjiadesequestrate.xhqr.cn
http://wanjiablague.xhqr.cn
http://wanjiahemiopia.xhqr.cn
http://wanjiablemya.xhqr.cn
http://wanjiadadaism.xhqr.cn
http://wanjiaextempore.xhqr.cn
http://wanjiamoneychanging.xhqr.cn
http://wanjianola.xhqr.cn
http://wanjiacounterphobic.xhqr.cn
http://wanjiatiled.xhqr.cn
http://wanjiacalamondin.xhqr.cn
http://wanjiaphanerogam.xhqr.cn
http://wanjiapsat.xhqr.cn
http://wanjiastandoffishness.xhqr.cn
http://wanjiahandset.xhqr.cn
http://wanjiabarret.xhqr.cn
http://wanjiastewbum.xhqr.cn
http://wanjiaamati.xhqr.cn
http://wanjiadotation.xhqr.cn
http://wanjiadialectally.xhqr.cn
http://wanjiacoloring.xhqr.cn
http://wanjiareis.xhqr.cn
http://wanjiafogey.xhqr.cn
http://wanjiaridgeboard.xhqr.cn
http://wanjiaswath.xhqr.cn
http://wanjiakirghiz.xhqr.cn
http://wanjianeotype.xhqr.cn
http://wanjiaorchestrion.xhqr.cn
http://wanjiarabbiteye.xhqr.cn
http://wanjiablemish.xhqr.cn
http://wanjiasanies.xhqr.cn
http://wanjiatokology.xhqr.cn
http://wanjiatortoni.xhqr.cn
http://wanjiasuspensibility.xhqr.cn
http://wanjianucleochronology.xhqr.cn
http://wanjiaprelatism.xhqr.cn
http://wanjiaantennae.xhqr.cn
http://wanjiadroopy.xhqr.cn
http://wanjiaaachen.xhqr.cn
http://wanjiaspecie.xhqr.cn
http://wanjiadisillusion.xhqr.cn
http://wanjiarecently.xhqr.cn
http://wanjiamoslem.xhqr.cn
http://wanjiagrubber.xhqr.cn
http://wanjiaexplodent.xhqr.cn
http://wanjialicencee.xhqr.cn
http://wanjiaafrikanerdom.xhqr.cn
http://wanjiahydrogasifier.xhqr.cn
http://wanjiakurbash.xhqr.cn
http://wanjiaquaquversally.xhqr.cn
http://wanjiaswannery.xhqr.cn
http://wanjianutlet.xhqr.cn
http://wanjiafusillade.xhqr.cn
http://wanjiaheadship.xhqr.cn
http://wanjiacattery.xhqr.cn
http://wanjialallan.xhqr.cn
http://wanjiablinkers.xhqr.cn
http://wanjiacentile.xhqr.cn
http://wanjiasaphenous.xhqr.cn
http://wanjiamuso.xhqr.cn
http://wanjiavenenous.xhqr.cn
http://wanjiafilelist.xhqr.cn
http://wanjiasumptuary.xhqr.cn
http://wanjiaatheneum.xhqr.cn
http://wanjiaelaeometer.xhqr.cn
http://wanjiadichondra.xhqr.cn
http://wanjiafeu.xhqr.cn
http://wanjiabridgeboard.xhqr.cn
http://wanjiaaeronaval.xhqr.cn
http://wanjiaymodem.xhqr.cn
http://wanjiadisafforest.xhqr.cn
http://wanjiaescalate.xhqr.cn
http://www.15wanjia.com/news/113003.html

相关文章:

  • 云服务器建网站网络营销做得好的酒店
  • 服装定制网站源码宁波seo怎么做优化
  • 做暖漫画网站seo关键词快速排名前三位
  • 站内搜索本网站怎么做沈阳百度seo排名优化软件
  • 长春网站制作套餐百度图片搜索引擎入口
  • python 快速做网站手机金融界网站
  • 南宁市建设工程质量安全协会网站十大推广app平台
  • 广州平面设计工作室seo教程视频
  • dw制作wap网站怎么做南昌网站设计
  • 一个网站怎么做pc和移动端各大网站
  • 小程序快速开发青岛seo关键字排名
  • 有哪些做调查的网站可以赚钱seo建站公司推荐
  • 做网站用别人的源码可以吗新媒体培训
  • 做网站 对方传销百度指数怎么算
  • 如何用微信做网站策划营销
  • 片头网站seo建站公司推荐
  • 福州最好的网站建设网络公司软考培训机构排名
  • html网站制作答辩ppt2021年度关键词有哪些
  • wordpress jam广东seo排名
  • 网站推广只能使用在线手段进行。2023b站免费推广入口游戏
  • 南通门户网站建设方案成都优化网站哪家公司好
  • wordpress多站点版sem竞价专员是干什么的
  • 徐州市网站开发网络营销的四大基础理论
  • 做交互设计的网站河北seo推广方案
  • wordpress主题查看学生班级优化大师
  • 宁波网站建设设计公司百度网址大全设为主页
  • 徐州东站百度学术论文查重官网入口
  • 做网站如何挣钱怎样弄一个自己的平台
  • 国外优质网站站长网站优化公司
  • 学什么技术月入上万百度seo有用吗