手机站
网通分站
电信主站
密 码:
用户名:
当前位置 : 主页>程序设计>C/C++>列表

C程式研发经典实例之7

来源:互联网 作者:west263.com 时间:2008-02-23
西部数码-全国虚拟主机10强!40余项虚拟主机管理功能,全国领先!双线多线虚拟主机南北访问畅通无阻!免费赠送企业邮局,.CN域名,自助建站480元起,免费试用7天,满意再付款! P4主机租用799元/月.月付免压金!


【程式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"

文章整理:西部数码--专业提供域名注册虚拟主机服务
http://www.west263.com
以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!