预览加载中,请您耐心等待几秒...
1/9
2/9
3/9
4/9
5/9
6/9
7/9
8/9
9/9

在线预览结束,喜欢就下载吧,查找使用更方便

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

例子: #include<stdio.h> main() { tips();/*caller*/ printf(“\nSuccessisaboutbangingonafterothershaveletgo”); } tips()/*caller*/ { printf(“\nWhenyoureachtheendoftheropetieaknot&hangon”,)0; } [上述程序的输出结果如下: Whenyoureachtheendoftheropttieaknot&hangon. Successisabouthangingonafterothershaveletgo.] #include<stdio.h> main() { inta,fact; printf(“\nEnteranynumber”); scanf(“%d”,&a); fact=rec(a); printf(“Factorialvalueis%d”,fact); } rec(x); intx; { intf; if(x==1) return(1); else f=x*rec(x-1); return(f); } [其显示的结果为:Factorialvalueis2.] 比较两个数较大的那个: #include<stdio.h> main() { inta,b,max; scanf(“%d%d”,&a,&b); if(a>b) max=a; elsemax=b; printf(“%d”,max); } 输出a+b的值: #include<stdio.h> voidmain() { inta,b,x; scanf(“%d%d”,&a,&b); x=a+b; printf(“%d”,x); } 输出a,b中最大的一位数: #include<stdio.h> intmax(intx,inty) { intz; if(x>y)z=x; elsez=y; return(z); } voidmain() { inta,b,c; scanf(“%d%d”,&a,&b); c=max(a,b); printf(“%d\n”,c); } 输出Hello: #include<stdio.h> intmain() { printf(“Hello!”); return0; } 求1~100的和: #include<stdio.h> intmain() { ints,n; s=0,n=1; A:s=s+n; n=n+1; if(n<=100) gotoA; printf(“%d”,s);} 请输入一个三位数,将其各位逆序输出:(如153,输出351) #include<stdio.h> voidmain() { intx,y,a,b,c; printf("请输入一个三位数的数:"); scanf("%d",&x); a=x/100; b=x%100/10; c=x%10; y=c*100+b*10+a; printf("\n%d",y); } #include<stdio.h> voidmain() { intx,a,b,c,d; printf("请输入一个三位数的数:"); scanf("%d",&x); a=x/100; b=x%100/10; c=x%10; d=c*100+b*10+a; printf("\n%d\n",d); } 买鸡: #include<stdio.h> voidmain() { intx,y,z; if(x>=0&&x<=19,y>=0&&y<=33,z>=0&&z<=100) while(x=19) { x=0; 5*x+3*y+z/3==100&&x+y+z==100; x=x+1; } printf("%d%d%d",x,y,z); } y==(100-5*x-z/3)/3&&y==100-x-z; z==(100-5*x-3*y)*3&&z==100-x-y; #include<stdio.h> voidmain() { intx=0,y,z; while(x<=19) { 5*x+3*y+z/3==100&&x+y+z==100; x=x+1; printf("%d%d%d",x,y,z); } } #include<stdio.h> voidmain() { intx=0,y=0,z=0; while(x<=19) { while(y<=33) { while(z<=100) { z==(100-5*x-3*y)*3&&z==100-x-y; z