C程式研发经典实例之7
2008-02-23 05:37:18来源:互联网 阅读 ()
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
【程式61】
题目:打印出杨辉三角形(需要打印出10行如下图)
1.程式分析:
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
2.程式源代码:
main()
{
int i, j;
int a[10][10];
printf("\n");
for(i=0; i<10; i )
{
a[i][0] = 1;
a[i][i] = 1;
}
for(i=2;i<10;i )
for(j=1;j<10; j )
a[i][j] = a[i-1][j-1] a[i-1][j];
for(i=0; i<10; i )
{
for(j=0;j<=i;j )
printf("]", a[i][j]);
printf("\n");
}
}
【程式62】
题目:学习putpixel画点。
1.程式分析:
2.程式源代码:
#include "stdio.h"
#include "graphics.h"
main()
{
int i, j, driver = VGA, mode = VGAHI;
initgraph(&driver, &mode, "");
setbkcolor(YELLOW);
for(i=50; i<=230; i =20)
for(j=50; j<=230; j )
putpixel(i, j, 1);
for(j=50; j<=230; j =20)
for(i=50; i<=230; i )
putpixel(i, j, 1);
}
【程式63】
题目:画椭圆ellipse
1.程式分析:
2.程式源代码:
#include "stdio.h"
#include "graphics.h"
#include "conio.h"
/* 欢迎访问 C Builder研究 - www.ccrun.com */
main()
{
int x = 360, y = 160, driver = VGA, mode = VGAHI;
int num=20, i;
int top, bottom;
initgraph(&driver, &mode, "");
top = y - 30;
bottom = y - 30;
for(i=0; i<num; i )
{
ellipse(250, 250, 0, 360, top, bottom);
top -= 5;
bottom = 5;
}
getch();
}
【程式64】
题目:利用ellipse and rectangle 画图。
1.程式分析:
2.程式源代码:
#include "stdio.h"
#include "graphics.h"
#include "conio.h"
main()
{
int driver = VGA, mode = VGAHI;
int i, num = 15, top = 50;
int left = 20, right = 50;
initgraph(&driver, &mode, "");
for(i=0; i<num; i )
{
ellipse(250, 250, 0, 360, right, left);
ellipse(250, 250, 0, 360, 20, top);
rectangle(20 - 2 * i, 20 - 2 * i, 10 * (i 2), 10 * (i 2));
right = 5;
left = 5;
top = 10;
}
getch();
}
【程式65】
题目:一个最优美的图案。
1.程式分析:
2.程式源代码:
#include "graphics.h"
#include "math.h"
#include "dos.h"
#include "conio.h"
#include "stdlib.h"
#include "stdio.h"
#include "stdarg.h"
#define MAXPTS 15
#define PI 3.1415926
struct PTS
// 本文转自 C Builder 研究 - http://www.ccrun.com/article.asp?i=650&d=64ln1a
{
int x, y;
};
/* 63 63 72 75 6E 2E 63 6F 6D */
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"
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇: C程式研发经典实例之5
下一篇: C程式研发经典实例之8
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash