收藏 分享(赏)

C++经典程序.doc

上传人:gnk289057 文档编号:6797001 上传时间:2019-04-22 格式:DOC 页数:88 大小:269KB
下载 相关 举报
C++经典程序.doc_第1页
第1页 / 共88页
C++经典程序.doc_第2页
第2页 / 共88页
C++经典程序.doc_第3页
第3页 / 共88页
C++经典程序.doc_第4页
第4页 / 共88页
C++经典程序.doc_第5页
第5页 / 共88页
点击查看更多>>
资源描述

1、-【程序1】题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?1.程序分析: 兔子的规律为数列 1,1,2,3,5,8,13,212.程序源代码:main()long f1,f2;int i;f1=f2=1;for(i=1;ik,但n能被 k整除,则应打印出k的值,并用n 除以k的商,作为新的正整数你n,重复执行第一步。(3)如果n 不能被k 整除,则用k+1作为k的值,重复执行第一步。2.程序源代码:/* zheng int is divided yinshu*/main()int n,i;pr

2、intf(“nplease input a number:n“);scanf(“%d“,printf(“%d=“,n);for(i=2;i=90分的同学用A表示,60-89分之间的用B表示,60分以下的用C表示。1.程序分析:(ab)?a:b这是条件运算符的基本例子。2.程序源代码:main()int score;char grade;printf(“please input a scoren“);scanf(“%d“,grade=score=90?A:(score=60?B:C);printf(“%d belongs to %c“,score,grade);=【程序6】题目:输入两个正整数m

3、和n ,求其最大公约数和最小公倍数。1.程序分析:利用辗除法。2.程序源代码:main()int a,b,num1,num2,temp;printf(“please input two numbers:n“);scanf(“%d,%d“,if(num1=aprintf(“It is the %dth day.“,sum);=【程序15】题目:输入三个整数x,y,z,请把这三个数由小到大输出。1.程序分析:我们想办法把最小的数放到x上,先将x与y进行比较,如果xy则将 x与y的值进行交换,然后再用x与z进行比较,如果xz则将x与z的值进行交换,这样能使x最小。2.程序源代码:main()int

4、x,y,z,t;scanf(“%d%d%d“,if (xy)t=x;x=y;y=t; /*交换x,y的值*/if(xz)t=z;z=x;x=t;/*交换x,z的值*/if(yz)t=y;y=z;z=t;/*交换z,y 的值*/printf(“small to big: %d %d %dn“,x,y,z);=【程序16】题目:用*号输出字母C的图案。1.程序分析:可先用*号在纸上写出字母 C,再分行输出。2.程序源代码:#include “stdio.h“main()printf(“Hello C-world!n“);printf(“ *n“);printf(“ *n“);printf(“ *

5、n“);printf(“ *n“);=【程序17】题目:输出特殊图案,请在c环境中运行,看一看,Very Beautiful!1.程序分析:字符共有256个。不同字符,图形不一样。 2.程序源代码:#include “stdio.h“main()char a=176,b=219;printf(“%c%c%c%c%cn“,b,a,a,a,b);printf(“%c%c%c%c%cn“,a,b,a,b,a);printf(“%c%c%c%c%cn“,a,a,b,a,a);printf(“%c%c%c%c%cn“,a,b,a,b,a);printf(“%c%c%c%c%cn“,b,a,a,a,b);

6、=【程序18】题目:输出9*9口诀。1.程序分析:分行与列考虑,共9 行9列,i控制行,j控制列。2.程序源代码:#include “stdio.h“main()int i,j,result;printf(“n“);for (i=1;i0)x1=(x2+1)*2;/*第一天的桃子数是第2天桃子数加1 后的2倍*/x2=x1;day-;printf(“the total is %dn“,x1);=【程序22】题目:两个乒乓球队进行比赛,各出三人。甲队为a,b,c三人,乙队为x,y,z三人。已抽签决定比赛名单。有人向队员打听比赛的名单。a说他不和x比,c说他不和x,z 比,请编程序找出三队赛手的名

7、单。 1.程序分析:判断素数的方法:用一个数分别去除2 到sqrt(这个数),如果能被整除,则表明此数不是素数,反之是素数。 2.程序源代码:main()char i,j,k;/*i是a的对手,j是b 的对手,k是c的对手*/for(i=x;ivoid main()char letter;printf(“please input the first letter of somedayn“);while (letter=getch()!=Y)/*当所按字母为Y时才结束*/ switch (letter)case S:printf(“please input second lettern“);if

8、(letter=getch()=a)printf(“saturdayn“);else if (letter=getch()=u)printf(“sundayn“);else printf(“data errorn“);break;case F:printf(“fridayn“);break;case M:printf(“mondayn“);break;case T:printf(“please input second lettern“);if(letter=getch()=u)printf(“tuesdayn“);else if (letter=getch()=h)printf(“thurs

9、dayn“);else printf(“data errorn“);break;case W:printf(“wednesdayn“);break;default: printf(“data errorn“);=【程序32】题目:Press any key to change color, do you want to try it. Please hurry up!1.程序分析: 2.程序源代码:#include void main(void)int color;for (color = 0; color void main(void)clrscr();/*清屏函数*/textbackgro

10、und(2);gotoxy(1, 5);/*定位函数*/cprintf(“Output at row 5 column 1n“);textbackground(3);gotoxy(20, 10);cprintf(“Output at row 10 column 20n“);=【程序34】题目:练习函数调用1. 程序分析: 2.程序源代码:#include void hello_world(void)printf(“Hello, world!n“);void three_hellos(void)int counter;for (counter = 1; counter void main(void)int color;for (color = 1; color #include “math.h“#define N 101main()int i,j,line,aN;for(i=2;iaj) min=j;tem=ai;ai=amin;amin=tem;/*output data*/printf(“After sorted n“);for(i=0;iend)a10=number;elsefor(i=0;i10;i+)

展开阅读全文
相关资源
猜你喜欢
相关搜索
资源标签

当前位置:首页 > 企业管理 > 管理学资料

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报