简单C语言程序的例子
Prepared on 22 November 2024
例子:
#include<> main() { tips();/*caller*/ printf(“\\nSuccessisaboutbangingonafterothershaveletgo”); }
tips()/*caller*/ { printf(“\\nWhenyoureachtheendoftheropetieaknot&hangon”,)0; }
[上述程序的输出结果如下:
Whenyoureachtheendoftheropttieaknot&hangon. Successisabouthangingonafterothershaveletgo.] #include<> 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<> main() {
inta,b,max;
scanf(“%d%d”,&a,&b); if(a>b) max=a; elsemax=b;
printf(“%d”,max); }
输出a+b的值:
#include<> voidmain() {
inta,b,x;
scanf(“%d%d”,&a,&b); x=a+b;
printf(“%d”,x); }
输出a,b中最大的一位数: #include<>
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<> intmain() {
printf(“Hello!”); return0; }
求1~100的和: #include<>