簡單C語言程序的例子_第1頁
簡單C語言程序的例子_第2頁
簡單C語言程序的例子_第3頁
簡單C語言程序的例子_第4頁
簡單C語言程序的例子_第5頁
已閱讀5頁,還剩4頁未讀 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

1、例子:l #include <stdio.h>main ()tips(); /*caller*/printf(“n Success is about banging on after others have let go”);tips() /*caller*/printf (“n When you reach the end of the rope tie a knot & hang on”,)0;上述程序的輸出結(jié)果如下:When you reach the end of the ropt tie a knot & hang on.Success is about

2、hanging on after others have let go.l #include <stdio.h>main()int a,fact;printf(“nEnter any number”);scanf(“%d”,&a);fact=rec(a);printf(“Factorial value is%d”,fact);rec(x);int x;int f;if(x=1)return(1);elsef=x*rec(x-1);return(f);其顯示的結(jié)果為: Factorial value is 2.l 比較兩個數(shù)較大的那個:#include <stdio.h

3、>main()int a,b,max;scanf (“%d%d”,&a,&b);if (a>b)max=a;else max=b;printf (“%d”,max);l 輸出a+b的值:#include <stdio.h>void main()int a,b,x;scanf (“%d%d”,&a,&b);x=a+b;printf (“%d”,x);l 輸出a,b中最大的一位數(shù):#include <stdio.h>int max(int x,int y)int z;if (x>y) z=x;else z=y;return(

4、z);void main()int a,b,c;scanf (“%d%d”,&a,&b);c=max(a,b);printf (“%dn”,c);l 輸出Hello:#include <stdio.h>int main()printf (“Hello!”);return 0;l 求1100的和:#include <stdio.h>int main()int s,n;s=0,n=1;A: s=s+n;n=n+1;if (n<=100)goto A;printf (“%d”,s);l 請輸入一個三位數(shù),將其各位逆序輸出:(如153,輸出351)#inc

5、lude <stdio.h>void main()int x,y,a,b,c;printf ("請輸入一個三位數(shù)的數(shù):");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>void main()int x,a,b,c,d;printf ("請輸入一個三位數(shù)的數(shù):");scanf("%d",&x);a=x/100;b=x%10

6、0/10;c=x%10;d=c*100+b*10+a;printf ("n%dn",d);買雞:#include <stdio.h>void main()int x,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&&a

7、mp;y=100-x-z;z=(100-5*x-3*y)*3&&z=100-x-y;#include <stdio.h>void main()int x=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>void main()int x=0,y=0,z=0;while (x<=19)while (y<=33)while (z<=100)z=(100-5*x-3*

8、y)*3&&z=100-x-y;z=z+1;printf("%dt",z);y=(100-5*x-z/3)/3&&y=100-x-z;y=y+1;printf("%dt",y);x=x+1;printf("%dt",x);l 計算x=20+3(x-1):#include <stdio.h>void main()int age(int x)int i,j;scanf(“%d”,&i);j=age(i);printf(“age=%dn”,j);int age(int x)int z;if

9、(x=1) z=20;else z=age(x-1)+3;return(z);l 編寫程序求圓柱體的表面積和體積:#include <stdio.h>#define PI 3.14 /*定義PI為符號常量,值為3.14*/void main()float r,h,s,v;printf(“請輸入半徑r和高h的值:n”);scanf(“%f%f”,&r,&h); /*輸入半徑r和高h*/s=2*PI*r*h; /*計算圓柱體表面積*/v=PI*r*r*h; /*計算圓柱體體積*/printf(“s=%f,v=%fn”,s,v);l 自增,自減運算符的使用:#includ

10、e <stdio.h>void main()int i=5,j=5;int x,y;x=i+;y=+j;printf(“%dt%dn”,-x+,-(+y);printf(“%dt%dt%dt%dn”,i,j,x,y);l 自增、自減運算符的基本運算:#include <stdio.h>void main()int k=4;int x,y,z;x=18-k+;printf(“x=%d”,x);printf(“k=%dn”,k);y=+k+6;printf(“y=%d”,y);printf(“k=%dn”,k);z=+k+k+;printf(“z=%dn”,z);結(jié)果:x=

11、14,k=5;y=12,k=6;z=14.l 輸出單個字符:#include <stdio.h>void main()char a,b;a=o;b=k;putchar(a);putchar(b);putchar(n);l 輸入字符舉例:#include <stdio.h>void main()char c;c=getchar(); /*從鍵盤讀入一個字符*/putchar(c);/*顯示輸入的字符*/猜數(shù)游戲:#include <stdio.h>#include <stdlib.h>#include <time.h>int main(

12、)int x,i=0,guess;srand(time(NULL);x=rand()%100+1;printf("請你猜數(shù):");doscanf("%d",&guess);if(x<guess)printf ("你猜大了!n");else if(x>guess)printf("你猜小了!n");elseprintf("你贏了!n");break;i+;if (i>=10)printf("隨機數(shù)是:%dn",x);printf("你已經(jīng)猜 錯

13、了10次,我贏了,哈哈!n");break;printf("請你再猜:"); while(1);#include <stdio.h>void main()int a=2,*p=&a,*q=&a;Printf("%d,%dn",*p+,*(q+);P=&a;q=&Printf ("%d%dn",*p,(*q)+);Printf("%d%dn",*p,+(*q);結(jié)果為:2,2 2,2 4,4(從又向左算)#include <stdio,h>Void main()Int a,b,c;Int *pa,*pb,*pc;Pa=&a;pb=&b;pc=&c;Scanf ("%d%d",pa,pb);Printf ("a=%d,b=%dn",*pa,*pb);C=a+b;Printf ("c=%dn",*pc);*pc=a+*pb;Printf ("c=%d從100到200之間有哪些數(shù)除4多2,除7多3,除9多5?#include<stdio.h&

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論