《经典c程序必考100例.docx》由会员分享,可在线阅读,更多相关《经典c程序必考100例.docx(58页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、【程序1】题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?1 .程序分析:可填在百位、十位、个位的数字都是1、2、3、4。组成所有的排列后再去掉不满足条件的排列。2 .程序源代码:#include stdio. h#include “conio. hmain ()(int i, j,k;printf(n);for(i=l; i5; i+)/*以下为三重循环*/for(j=l;j5;j+)for (k=l;k5;k+)(if (i!=k&i!= j&j!=k)/*确保 i、j、k 三位互不相同*/printf (%d,%d,%dn* i, j, k);getch
2、O ;【程序2】题目:企业发放的奖金根据利润提成。利润(I)低于或等于10万元时,奖金可提10%:利润高于10万元,低于20万元时,低于10万元的部分按10%提成,高于10万元的部分,可可提成7.5%;20万到40万之间时,高于20万元的部分,可提成5%;40万到60万之间时高于40万元的部分,可提成3%;60万到100万之间时,高于60万元的部分,可提成1.5%,高于100万元时,超过100万元的部分按1%提成,从键盘输入当月利润I,求应发放奖金总数?1 .程序分析:请利用数轴来分界,定位。注意定义时需把奖金定义成长整型。2 .程序源代码:4include stdio.h#include c
3、onio. hmain ()(long int i;int bonus1, bonus2, bonus4, bonus6, bonus10, bonus;scanf &i);bonusl=100000*0.1;bonus2=bonus1+100000*0.75;bonus4=bonus2+200000*0.5;bonus6=bonus4+200000*0.3;bonusl0=bonus6+400000*0.15;if(i=100000)bonus=i*0.1;else if(i=200000)bonus=bonus1+(i-100000)*0.075;else if(i=400000)bonu
4、s=bonus2+(i-200000)*0.05;else if(i=600000)bonus=bonus4+(i-400000)*0.03;else if(i=1000000)bonus=bonus6+(i-600000)*0.015;elsebonus=bonus10+(i-1000000)*0.01;printf(bonus=%d”, bonus);getchO ;【程序3】题目:一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少?1 .程序分析:在10万以内判断,先将该数加上100后再开方,再将该数加上268后再开方,如果开方后的结果满足如下条件,
5、即是结果。请看具体分析:2 .程序源代码:include math, h”include stdio. hinclude conio. hmain ()Ilong int i, x, y, z;for (i=l:i2)/*如果是闰年且月份大于2,总天数应该加一天*/ sum+;printf(It is the %dth day.”, sum); getchO ;【程序5】题目:输入三个整数x,y,z,请把这三个数由小到大输出。1 .程序分析:我们想办法把最小的数放到x上,先将x与y进行比较,如果xy则将x与y的值进行交换,然后再用x与z进行比较,如果xz则将x与z的值进行交换,这样能使x最小。
6、2 .程序源代码:#include *stdio. hinclude “conio. hmain () int x, y, z, t;scanf(*%d%d%d*,&x,&y,&z);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);getch();【程序6】题目:用*号输出字母C的图案。1 .程序分析:可先用号在纸上写出字母C,再分行输出。2 .程序源代码:#i
7、nclude *stdio. httinclude *conio. hmain ()(printf(Hello C-world!n);printf(*rT);printfC *n);printf(*n);printf(*n);getch();【程序7】题目:输出特殊图案,请在c环境中运行,看一看,Very Beautiful!1.程序分析:字符共有256个。不同字符,图形不一样。3 .程序源代码:#include *stdio. h#include *conio. hmain ()(char a=176, b=219;printf (*%c%c%c%c%cn*, b, a, a, a, b);
8、printf (%c%c%c%c%cn”, a, b, a, b, a);printf C1,%c%c%c%c%cn/Z, 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);getchO ;【程序8】题H:输出9*9口诀。1 .程序分析:分行与列考虑,共9行9列,i控制行,j控制列。2 .程序源代码:8include stdio.hinclude conio. h main ()(int i, j, result:printf(n);for (i=l;i10;i+)f
9、or(j=l;j10;j+)(result=i*j;printf (飞d*%d=%-3d”,i,j, result);/*-3d 表示左对齐,占3位*/)printf (n);/*每一行后换行*/)getchO ;【程序9】题目:要求输出国际象棋棋盘。1 .程序分析:用i控制行,j来控制列,根据i+j的和的变化来控制输出黑方格,还是白方格。2 .程序源代码:ttinclude stdio. h#include conio. h main()(int i, j;for(i=0;i8;i+)Ifor(j=0;j8;j+)if(i+j)%2=0)printf (%c%c”,219,219);else
10、printf ();printf(n);getchO ;【程序10题目:打印楼梯,同时在楼梯上方打印两个笑脸。1 .程序分析:用i控制行,j来控制列,j根据i的变化来控制输出黑方格的个数。2 .程序源代码:include stdio.h8include conio. hmain ()(int i, j;printf(lln);/*输出两个笑脸*/for(i=l;ill;i+)(for(j=l;j=i;j+)printf(*%c%c*,219,219);printf(n);getch();【程序11题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一
11、对兔子,假如兔子都不死,问每个月的兔子总数为多少?1 .程序分析:兔子的规律为数列1,1,2,3,5,8,13,21.2 .程序源代码:ttinclude stdio.h#include *conio.hmain ()(long fl, f2;int i;fl=f2=l;for(i=l;i=20;i+)Iprintf (%121dfl, f2);if (i%2=0) printf (*n*);/*控制输出,每行四个*/fl=fl+f2;/*前两个月加起来赋值给第三个月*/f2=fl+f2;/*前两个月加起来赋值给第三个月*/getchO ;【程序12题目:判断101-200之间有多少个素数,并
12、输出所有素数。1 .程序分析:判断素数的方法:用一个数分别去除2到sqrt (这个数),如果能被整除,则表明此数不是素数,反之是素数。2 .程序源代码:#include stdio.httinclude conio. hinclude math, h”main()int m, i, k, h=0, leap=l;printf(n);for(m=101:m=200;m+)k=sqrt(m+1);for(i=2;i=k;i+)if(m%i=0)(leap=0:break;if (1 eap)(printf (%-4d”, m):h+;if(h%10=0)printf(n);)leap=l;)pri
13、ntf(*nThe total is %d”,h);getch ();【程序13题目:打印出所有的“水仙花数”,所谓“水仙花数”是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个“水仙花数”,因为153=1的三次方+5的三次方+3的三次方。1 .程序分析:利用for循环控制100-999个数,每个数分解出个位,十位,百位。2 .程序源代码:include stdio. h#include *conio. hmain () int i, j, k, n; printf C, water flower number is:); for(n=100:n1000;n+)(i=n/100;
14、/*分解出百位*/j=n/10%10;/*分解出十位*/k=n%10;/*分解出个位*/if(i*100+j*10+k=i*i*i+j*j*j+k*k*k) printf (飞-5d”, n);getchO ;【程序14题目:将一个正整数分解质因数。例如:输入90,打印出90=2*3*3*5。程序分析:对n进行分解质因数,应先找到一个最小的质数k,然后按下述步骤完成:(1)如果这个质数恰等于n,则说明分解质因数的过程已经结束,打印出即可。(2)如果nk,但n能被k整除,则应打印出k的值,并用n除以k的商,作为新的正整数你n,重复执行第一步。(3)如果n不能被k整除,则用k+1作为k的值,重复执
15、行第一步。2.程序源代码:/* zheng int is divided yinshu*/#include stdio.hinclude conio. hmain ()(int n, i;printf(nplease input a numberAn);scanf &n);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 gr
16、ade;printf(*please input a scoren);scanf&score);grade二score=90? A,:(score=60? B C); printf (%d belongs to %c? score, grade); getchO ;【程序16题目:输入两个正整数m和n,求其最大公约数和最小公倍数。1 .程序分析:利用辗除法。2 .程序源代码:#include stdio.h*#include “conio.hmain()int a,b,num 1,num2,temp;printf(uplease input two numbers:n);scanf(%d,%d
17、”,&num l,&num2);if(numlvnum2)/*交换两个数,使大数放在numl上*/temp=numl;numl=num2;num2=temp;)a=numl;b=num2;while(b!=0)/*利用辗除法,直到b为0为止*/(temp=a%b;a=b;b=temp;printf(gongyueshu:%dn,a);printf(gongbeishu:%dn,numl*num2/a);getch();)【程序17题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。1 .程序分析:利用while语句,条件为输入的字符不为An:2 .程序源代码:include
18、 nstdio.hn#include conio.hmain()(char c;int letters=0,space=0,digit=0,others=0;printfCplease input some charactersll);while(c=getchar()!=*n*)(if(c=,a,&c=,A,&c=,0,&c=,9,)digit+;elseothers+;)printf(all in all:char=%d space=%d digit=%d others=%dn,letters,space.digit,others);getch();)【程序18题目:求 s=a+aa+aa
19、a+aaaa+aa.a 的值,其中 a 是一个数字。例如2+22+222+2222+22222(此时共有5个数相加),几个数相加有键盘控制。1 .程序分析:关键是计算出每一项的值。2 .程序源代码:include stdio.h#include conio.hmain() int a,n,count=l;long int sn=0,tn=0;printf(uplease input a and nnn);scanf(d,%d”,&a,&n);printf(,a=%d,n=%dn,a,n);while(count=n)(tn=tn+a;sn=sn+tn;a=a*10;4-+count;)prin
20、tf(,a+aa+.=%ldnn,sn);getch();【程序19题目:一个数如果恰好等于它的因子之和,这个数就称为“完数”。例如6=1+2+3.编程找出1000以内的所有完数。1 .程序分析:请参照程序一上页程序14.2 .程序源代码:#include stdio.h*#include conio.h main()(static int k10;int i,j,n,s;for(j=2;jl 000;j+)( n=-l;s=j;for(i=l;ij;i+) if(j%i)=O)( n+;s=s-i;kn=i;) if(s=O) printf(n%d is a wanshuH,j);for(i
21、=0;in;i+)printf(n%d;;ki);printf(%dn,kn);) getch();)【程序20题目:一球从100米高度自由落下,每次落地后反跳回原高度的一半;再落下,求它在第10次落地时,共经过多少米?第10次反弹多高?1 .程序分析:见下面注释2 .程序源代码:include stdio.h#include stdio.hmain()(float sn=100.0,hn=sn/2;int n;for(n=2;n0) xl=(x2+D*2;/*第一天的桃子数是第2天桃子数加1后的2倍*/ x2=xl;day;printf(the total is %dn”,xl); getc
22、h();【程序22题H:两个乒乓球队进行比赛,各出三人。甲队为a,b,c三人,乙队为x,y,z三人。已抽签决定比赛名单。有人向队员打听比赛的名单。a说他不和x比,c说他不和x,z比,请编程序找出三队赛手的名单。1 .程序分析:判断素数的方法:用一个数分别去除2到sqrt (这个数),如果能被整除,则表明此数不是素数,反之是素数。2 .程序源代码:include stdio.h#include 程序23题目:打印出如下图案(菱形)【程序47题目:宏#define命令练习令)【程序48题目:宏#define命令练习(3)1.程序分析:2.程序源代码:#define LAG 4define SMA
23、conio. hmain ()(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!=k&j!=k)Iif (i != x&k!= x&k!= z)printf (order is a%ctb%ctc-%cn”, i, j, k);)getchO ;*1 .程序分析:先把图形分成两部分来看待,前四行一个规律,后三行一个规律,利用双重 for循环,第一层控制行,第二层控制列。2 .程序源代码:#include stdio.h#include c
24、onio.h main()( int i,j,k;for(i=0;i=3;i+)(for(j=0;j=2-i;j+)printf(n 0);for(k=0;k=2*i;k+)printf(n*);printf(Hn);)for(i=0;iv=2;i+)(for(j=0;j=i;j+)printf(*);for(k=0;k=4-2*i ;k+)printf(nnn);) getch();printf(sum is %9.6fn,s); getch();)【程序25题目:求 l+2!+3!+.+20!的和1 .程序分析:此程序只是把累加变成了累乘。2 .程序源代码:#include stdio.h
25、#include conio.hmain()(float n,s=0,t=l;for(n=l ;n=20;n+)(t*=n;s+=t;)printf(1+2!+3!.+20!=%en,s);getch();)return sum;【程序27题目:利用递归函数调用方式,将所输入的5个字符,以相反顺序打印出来。1 .程序分析:2 .程序源代码:include stdio.h#include conio.h main()(int i=5;void palin(int n);printf(H40:);palin(i);printf(”n); getch();)void palin(n) int n;(
26、char next;if(n=l)( next=getchar(); printfCXnXO:); putchar(next);) else ( next=getchar(); palin(n-l);putchar(next);)3 .程序源代码:#include stdio.h#include Hconio.hn age(n) int n;int c;if(n=l) c=10;else c=age(n-l)+2; retum(c);)main()(printf(%d,age(5); getch();【程序29题目:给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。1
27、.程序分析:学会分解出每一位数,如下解释:(这里是一种简单的算法,师专数002班赵鑫提供)2 .程序源代码:#include stdio.h#include conio.hmain()(long a,b,c,d,e,x;scanf(%ld,&x);a=x/10000;/*分解出万位*/b=x%10000/1000;/*分解出千位*/c=x%l 000/100;/*分解出百位*/d=x%100/10;/*分解出十位*/e=x%10;/*分解出个位*/if(a!=O) printf(there are 5,%ld %ld %ld %ld %ldn,e,d,c,b,a);else if (b!=0)
28、 printf(there are 4,%ld %ld %ld %ldn,e,d,c,b);else if(c!=O) printf( there are 3,%ld %ld %ldn,e,d,c);else if (d!=0) printf(there are 2,%ld %ldn,e,d);else if(e!=0) printf( there are l,%ldn,e);getch();1 .程序分析:同29例2 .程序源代码:#include stdio.h*#include conio.hmain()long ge,shi,qian,wan,x; scanf(%IdH,&x);wan
29、=x/10000;qian=x%10000/1000;shi=x%100/10;ge=x%10;if(ge=wan&shi=qian)/*个位等于万位并且十位等于T位*/ printf(Hthis number is a huiwennM);elseprintfCthis number is not a huiwennH);getch();case M:printf(mondayn);break;case T:printf(please input second lcttern);if (letter=getch 0)=,u)printf(tuesdayn);else if (letter=g
30、etch()=,h*)printf(*thursdayn*);else printf(data errorn*);break;case W:printf(wednesdayn);break;default: printf(*data errorn);)getchO ;【程序32题目:Press any key to change color, do you want to try it. Please hurry up!1.程序分析:2.程序源代码: ttinclude *conio. h#include *stdio. h void main(void)(int color;for (col
31、or =0; color 8; color+)(textbackground (color);/*设置文本的背景颜色*/ cprintf(This is color %drn”, color);cprintf(Press any key to continuern*);getchO ;/*输入字符看不见*/cprintf(*Output at row 5 column ln*);textbackground(3);gotoxy(20,10);cprintf(*Output at row 10 column 20n);getchO ;【程序34题Fl:练习函数调用1 .程序分析:2 .程序源代码
32、:ttinclude stdio. h#include *conio.hvoid hello_wor1d(void)(printfCHello, world!n);void three_hellos(void)(int counter;for (counter =1; counter =3; counter+) hello_world();/*调用此函数*/void main(void)(three_hellos();/*调用此函数*/getchO ;cprintf(*This is blinkingrn); getchO ;【程序36题目:求100之内的素数1 .程序分析:2 .程序源代码:
33、include stdio. h*include math, h”define N 101main ()int i, j, line, aN;for(i=2;iN;i+) ai=i;for(i=2;isqrt(N);i+) for(j=i+l;jN;j+)(if (ai!=0&aj!=0) if(aj%ai=0)aj=0;)printf(n);for(i=2, line=0;iN;i+)(if(ai!=0)printf (飞5d”, ai); line+;if(line=10)(printf(n);line=0:getchO ;)#include *stdio. h#include conio
34、. hdefine N 10main ()(int i, j, min, tem, aN;/input data*/printf(please input ten num:n*);for(i=0;iN;i+)(printf (*a%d=*, i);scanf &ai);printf(n);for(i=0;iN;i+)printf C%5d*,ai);printf(n);/sort ten num*/for(i=0;iN-l;i+)(min=i;for(j=i+l;jaj)min=j;tem=ai;ai=amin;amin=tem;/output data*/printf(After sorte
35、d n);for(i=0;iN;i+)printf C%5d*,ai);getchO ;main () float a33, sum=0;int i, j;printf(*please input rectangle element:n*);for(i=0;i3;i+)for(j=0;j3;j+)scanfj);for(i=0;i3;i+)sum=sum+aii;printf(*duijiaoxian he is %6.2f*, sum);getchO ;temp2=aj; aj=templ;templ=temp2;break;)for(i=0;ill;i+)printf(%6d, ai);g
36、etch();【程序40题目:将一个数组逆序输出。L程序分析:用第一个与最后一个交换。2.程序源代码:#include *stdio. httinclude *conio. hdefine N 5main ()(int aN=9,6,5,4,1, i, temp;printf(*n original array:n*);for(i=0;iN;i+)printf(%4d, ai);for(i=0;iN/2;i+)(temp=ai;ai=aN-i-l;aN-i-l=temp;printf(*n sorted array:n*);for(i=0;iN;i+)printf(%4d, ai);getchO ;#include *stdio. h#include conio. hvarfunc 0(int var=0;static int static_var=O;printf(*40:var equal %d n”,var);printf(*40:static var equal %d n*, static_var);printf(n);var+;static_var+;void main()(int i;for(i=0;i3;i