收藏 分享(赏)

C程序经典100例.doc

上传人:kpmy5893 文档编号:7334627 上传时间:2019-05-15 格式:DOC 页数:93 大小:135KB
下载 相关 举报
C程序经典100例.doc_第1页
第1页 / 共93页
C程序经典100例.doc_第2页
第2页 / 共93页
C程序经典100例.doc_第3页
第3页 / 共93页
C程序经典100例.doc_第4页
第4页 / 共93页
C程序经典100例.doc_第5页
第5页 / 共93页
点击查看更多>>
资源描述

1、题目:有 1、2 、 3、4 个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? 1.程序分析:可填在百位、十位、个位的数字都是 1、2、3 、4。组成所有的排列后再去掉不满足条件的排列。2.程序源代码:#include “stdio.h“#include “conio.h“main()int i,j,k;printf(“n“);for(i=1;i2) /*如果是闰年且月份大于 2,总天数应该加一天 */sum+;printf(“It is the %dth day.“,sum);getch(); =【程序 5】题目:输入三个整数 x,y,z,请把这三个数由小到大输出。1.程序分析:

2、我们想办法把最小的数放到 x 上,先将 x 与 y 进行比较,如果 xy 则将 x 与 y 的值进行交换,然后再用 x 与 z 进行比较,如果 xz 则将 x 与 z 的值进行交换,这样能使 x 最小。2.程序源代码:#include “stdio.h“#include “conio.h“main()int 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

3、%d %dn“,x,y,z);getch(); =【程序 6】题目:用*号输出字母 C 的图案。1.程序分析:可先用*号在纸上写出字母 C,再分行输出。2.程序源代码:#include “stdio.h“#include “conio.h“main()printf(“Hello C-world!n“);printf(“ *n“);printf(“ *n“);printf(“ * n“);printf(“ *n“);getch(); =【程序 7】题目:输出特殊图案,请在 c 环境中运行,看一看, Very Beautiful!1.程序分析:字符共有 256 个。不同字符,图形不一样。 2.程序

4、源代码:#include “stdio.h“#include “conio.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);getch(); =【程序 8】题目:输出 9*9 口诀。1.程序分析:分行与列考虑,共 9 行 9 列,i 控制行,j 控制列。2.程序源代码:#inc

5、lude “stdio.h“#include “conio.h“main()int i,j,result;printf(“n“);for (i=1;ik,但 n 能被 k 整除,则应打印出 k 的值,并用 n 除以 k 的商,作为新的正整数你 n,重复执行第一步。(3)如果 n 不能被 k 整除,则用 k+1 作为 k 的值,重复执行第一步。2.程序源代码:/* zheng int is divided yinshu*/#include “stdio.h“#include “conio.h“main()int n,i;printf(“nplease input a number:n“);sca

6、nf(“%d“,printf(“%d=“,n);for(i=2;i=90 分的同学用 A 表示,60-89 分之间的用 B 表示,60 分以下的用 C 表示。1.程序分析:(ab)?a:b 这是条件运算符的基本例子。2.程序源代码:#include “stdio.h“#include “conio.h“main()int score;char grade;printf(“please input a scoren“);scanf(“%d“,grade=score=90?Ascore=60?B:C);printf(“%d belongs to %c“,score,grade);getch();=

7、【程序 16】题目:输入两个正整数 m 和 n,求其最大公约数和最小公倍数。1.程序分析:利用辗除法。2.程序源代码:#include “stdio.h“#include “conio.h“main()int a,b,num1,num2,temp;printf(“please input two numbers:n“);scanf(“%d,%d“,if(num1=a/*第一天的桃子数是第 2 天桃子数加 1 后的 2 倍*/x2=x1;day-;printf(“the total is %dn“,x1);getch();=【程序 22】题目:两个乒乓球队进行比赛,各出三人。甲队为 a,b,c

8、三人,乙队为 x,y,z 三人。已抽签决定比赛名单。有人向队员打听比赛的名单。a 说他不和 x 比,c 说他不和 x,z 比,请编程序找出三队赛手的名单。 1.程序分析:判断素数的方法:用一个数分别去除 2 到 sqrt(这个数),如果能被整除,则表明此数不是素数,反之是素数。 2.程序源代码:#include “stdio.h“#include “conio.h“main()char i,j,k;/*i 是 a 的对手,j 是 b 的对手,k 是 c 的对手*/for(i=x;i=z;i+)for(j=x;j=z;j+)if(i!=j)for(k=x;k=z;k+)if(i!=kgetch(

9、);=【程序 23】 题目:打印出如下图案(菱形)*1.程序分析:先把图形分成两部分来看待,前四行一个规律,后三行一个规律,利用双重 for 循环,第一层控制行,第二层控制列。 2.程序源代码:#include “stdio.h“#include “conio.h“main()int i,j,k;for(i=0;i=3;i+)for(j=0;j=2-i;j+)printf(“ “);for(k=0;k=2*i;k+)printf(“*“);printf(“n“);for(i=0;i=2;i+)for(j=0;j=i;j+)printf(“ “);for(k=0;k=4-2*i;k+)print

10、f(“*“);printf(“n“);getch();=【程序 24】 题目:有一分数序列:2/1,3/2,5/3,8/5,13/8, 21/13.求出这个数列的前 20 项之和。1.程序分析:请抓住分子与分母的变化规律。 2.程序源代码:#include “stdio.h“#include “conio.h“main()int n,t,number=20;float a=2,b=1,s=0;for(n=1;n=number;n+)s=s+a/b;t=a;a=a+b;b=t;/*这部分是程序的关键,请读者猜猜 t 的作用*/printf(“sum is %9.6fn“,s);getch();=

11、【程序 25】 题目:求 1+2!+3!+.+20!的和1.程序分析:此程序只是把累加变成了累乘。 2.程序源代码:#include “stdio.h“#include “conio.h“main()float n,s=0,t=1;for(n=1;n=20;n+)t*=n;s+=t;printf(“1+2!+3!.+20!=%en“,s);getch();=【程序 26】 题目:利用递归方法求 5!。1.程序分析:递归公式:fn=fn_1*4!2.程序源代码:#include “stdio.h“#include “conio.h“main()int i;int fact();for(i=0;i

12、5;i+)printf(“40:%d!=%dn“,i,fact(i);getch();int fact(j)int j;int sum;if(j=0)sum=1;elsesum=j*fact(j-1);return sum;=【程序 27】 题目:利用递归函数调用方式,将所输入的 5 个字符,以相反顺序打印出来。1.程序分析:2.程序源代码:#include “stdio.h“#include “conio.h“main()int i=5;void palin(int n);printf(“40:“);palin(i);printf(“n“);getch();void palin(n)int

13、n;char next;if(n=1)next=getchar();printf(“n0:“);putchar(next);elsenext=getchar();palin(n-1);putchar(next);=【程序 28】 题目:有 5 个人坐在一起,问第五个人多少岁?他说比第 4 个人大 2 岁。问第 4 个人岁数,他说比第 3个人大 2 岁。问第三个人,又说比第 2 人大两岁。问第 2 个人,说比第一个人大两岁。最后问第一个人,他说是 10 岁。请问第五个人多大?1.程序分析:利用递归的方法,递归分为回推和递推两个阶段。要想知道第五个人岁数,需知道第四人的岁数,依次类推,推到第一人(

14、10 岁),再往回推。2.程序源代码:#include “stdio.h“#include “conio.h“age(n)int n;int c;if(n=1) c=10;else c=age(n-1)+2;return(c);main()printf(“%d“,age(5);getch();=【程序 29】 题目:给一个不多于 5 位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。1. 程序分析:学会分解出每一位数,如下解释:( 这里是一种简单的算法,师专数 002 班赵鑫提供) 2.程序源代码:#include “stdio.h“#include “conio.h“main( )

15、long a,b,c,d,e,x;scanf(“%ld“,a=x/10000;/*分解出万位*/b=x%10000/1000;/*分解出千位*/c=x%1000/100;/*分解出百位*/d=x%100/10;/*分解出十位*/e=x%10;/*分解出个位*/if (a!=0) printf(“there are 5, %ld %ld %ld %ld %ldn“,e,d,c,b,a);else if (b!=0) printf(“there are 4, %ld %ld %ld %ldn“,e,d,c,b);else if (c!=0) printf(“ there are 3,%ld %ld

16、 %ldn“,e,d,c);else if (d!=0) printf(“there are 2, %ld %ldn“,e,d);else if (e!=0) printf(“ there are 1,%ldn“,e);getch();=【程序 30】 题目:一个 5 位数,判断它是不是回文数。即 12321 是回文数,个位与万位相同,十位与千位相同。 1.程序分析:同 29 例2.程序源代码:#include “stdio.h“#include “conio.h“main( )long ge,shi,qian,wan,x;scanf(“%ld“,wan=x/10000;qian=x%1000

17、0/1000;shi=x%100/10;ge=x%10;if(ge=wanelseprintf(“this number is not a huiwenn“);getch();-经典 c 程序 100 例=31-40【程序 31】题目:请输入星期几的第一个字母来判断一下是星期几,如果第一个字母一样,则继续判断第二个字母。1.程序分析:用情况语句比较好,如果第一个字母一样,则判断用情况语句或 if 语句判断第二个字母。2.程序源代码:#include “stdio.h“#include “conio.h“void main()char letter;printf(“please input th

18、e first letter of somedayn“);while(letter=getch()!=Y)/*当所按字母为 Y 时才结束*/switch (letter)case Srintf(“please input second lettern“);if(letter=getch()=a)printf(“saturdayn“);else if (letter=getch()=u)printf(“sundayn“);else printf(“data errorn“);break;case Frintf(“fridayn“);break;case Mrintf(“mondayn“);bre

19、ak;case Trintf(“please input second lettern“);if(letter=getch()=u)printf(“tuesdayn“);else if (letter=getch()=h)printf(“thursdayn“);else printf(“data errorn“);break;case Wrintf(“wednesdayn“);break;default: printf(“data errorn“);getch();=【程序 32】题目:Press any key to change color, do you want to try it.

20、Please hurry up!1.程序分析: 2.程序源代码:#include “conio.h“#include “stdio.h“void main(void)int color;for (color = 0; color 8; color+) textbackground(color);/*设置文本的背景颜色 */cprintf(“This is color %drn“, color);cprintf(“Press any key to continuern“);getch();/*输入字符看不见*/=【程序 33】题目:学习 gotoxy()与 clrscr()函数 1.程序分析:2

21、.程序源代码:#include “conio.h“#include “stdio.h“void main(void)clrscr();/*清屏函数*/textbackground(2);gotoxy(1, 5);/*定位函数*/cprintf(“Output at row 5 column 1n“);textbackground(3);gotoxy(20, 10);cprintf(“Output at row 10 column 20n“);getch();=【程序 34】题目:练习函数调用1. 程序分析: 2.程序源代码:#include “stdio.h“#include “conio.h

22、“void hello_world(void)printf(“Hello, world!n“);void three_hellos(void)int counter;for (counter = 1; counter = 3; counter+)hello_world();/*调用此函数*/void main(void)three_hellos();/*调用此函数*/getch();=【程序 35】题目:文本颜色设置1.程序分析:2.程序源代码:#include “stdio.h“#include “conio.h“void main(void)int color;for (color = 1

23、; color 16; color+)textcolor(color);/*设置文本颜色*/cprintf(“This is color %drn“, color);textcolor(128 + 15);cprintf(“This is blinkingrn“);getch();=【程序 36】题目:求 100 之内的素数 1.程序分析:2.程序源代码:#include “stdio.h“#include “math.h“#define N 101main()int i,j,line,aN;for(i=2;iN;i+) a=i;for(i=2;isqrt(N);i+)for(j=i+1;jN;j+)if(a!=0printf(“n“);for(i=2,line=0;iN;i+)

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

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

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


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

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

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