C語(yǔ)言程序設(shè)計(jì) 入門源代碼代碼集合.doc
《C語(yǔ)言程序設(shè)計(jì) 入門源代碼代碼集合.doc》由會(huì)員分享,可在線閱讀,更多相關(guān)《C語(yǔ)言程序設(shè)計(jì) 入門源代碼代碼集合.doc(14頁(yè)珍藏版)》請(qǐng)?jiān)谘b配圖網(wǎng)上搜索。
1、演示1
#include
2、rn(i + j); } void main() { int n1,n2; printf("input 2 numbers:\n"); scanf("%d%d",&n1,&n2); printf("the sum = %d\n",sum(n1,n2)); getchar(); } 演示3 #include "stdio.h" int maxnum(int,int,int); main() { int a,b,c; printf("Please enter 3 numbers:\n"); scanf("%d,%d,%d",&a,&b,&c
3、);
printf("Maxnum is %d\n",maxnum(a,b,c));
return 0;
}
int maxnum(int x,int y,int z)
{
int max=x;
if(y>max)
max = y;
if(z>max)
max = z;
return max;
}
演示4
#include
4、}
int sum(int n)
{
int i,s=0;
for(i=1;i<=n;i++)
s=s+s1(i);
return s;
}
void main()
{
int n;
printf("n:");
scanf("%d",&n);
printf("s=%d\n",sum(n));
}
演示5
#include
5、d main()
{
int n;
printf("Input n:");
scanf("%d",&n);
func(n);
printf("n=%d\n",n);
}
演示6
#include
6、a,b);
}
演示7
#include
7、3.5));
}
演示9
#include
8、 printf("input 2 numbers :\n"); scanf("%d,%d",&a,&b); printf("input number is:a=%d,b=%d \n",a,b); swap(a,b); printf("input 2 numbers is:a=%d,b=%d\n",a,b); return 0; } void swap(int x,int y) { int temp; temp = x; x = y; y = temp; printf("swap number is : x = %d,y = %d \n
9、",x,y);
}
演示11
#include "stdio.h"
#define K 3
#define N 5
long f2(int n,int k)
{
long power = n;
int i;
for(i=1;i 10、(void)
{
printf("sum of %d power of integer from 1 to %d = ",K,N);
printf("%ld\n",f1(N,K));
return 0;
}
演示12
#include 11、f the two values %d and %d,the mininum is %d\n",j,k,mininum);
return 0;
}
int min(int a,int b)
{
if(a
int func(int a,int b);
void main()
{
int k=4,m=1,p;
p=func(k,m);
printf("%d\n",p);
}
i 12、nt func(int a,int b)
{
int m=0,i=2;
i+=m+1;
m=i+a+b;
return m;
}
演示14
#include 13、dio.h>
int f1(int xb)
{
extern int xa;
return (xa*xb);
}
int main(void)
{
extern int xb;
int xa = 5;
printf("xa=%d,xb=%d,result=%d",xa,xb,f1(xa));
return 0;
}
int xa = 3,xb = 4;
演示16
#include 14、}
int x,y;
void main()
{
int a=7,b=5;
x=a+b;y=a-b;
num();
printf("%d,%d\n",x,y);
}
演示17
#include 15、
}
演示18
#include 16、)
{
int t;
t=x;x=y;y=t;
}
void main()
{
int a,b;
scanf("%d,%d",&a,&b);
swap(a,b);
printf("%d,%d\n",a,b);
}
----------------------------------------------------------------------------------------------------------
#include 17、t t;
t=x;x=y;y=t;
}
void main()
{
scanf("%d,%d",&x,&y);
swap(x,y);
printf("%d,%d\n",x,y);
}
#include 18、--------------------------------------------------------------------------------------------------------
演示20
#include 19、"
int main(void)
{
int a = 2;
int p = a;
printf("%d\n",a);
{
int a =7;
printf("%d\n",a);
printf("%d\n",p);
}
printf("%d\n",++a);
return 0;
}
演示22
#include 20、p);
p=func(k,m);printf("%d\n",p);
}
int func(int a,int b)
{
static int m=0,i=2;
i+=m+1;
m=i+a+b;
return m;
}
演示23
#include 21、include 22、int fact()
{
static int i=5;
if(i==0) return 1;
else
{
i--;
return (i+1)*fact();
}
}
void main()
{
printf("fact=%d\n",fact());
}
演示26
#include 23、urn w;
return(fun(k-1)*k);
}
演示27
#include 24、
c=age(n-1)+2;
return c;
}
void main()
{
printf("%d\n",age(5));
}
演示29
#include 25、(演示30)
#include "stdio.h"
void move(int,char,char,char);
int main(void)
{
int n;
printf("input n disk on tower A:\n");
scanf("%d",&n);
move(n,A,B,C);
getchar();
return 0;
}
void move(int n,char a,char b,char c)
{
static int step=1;
if(n==1)
{
printf("step %d :move d 26、isk form %c -> %c\n",step++,a,c);
}
else
{
move(n-1,a,c,b);
move(1,a,b,c);
move(n-1,b,a,c);
}
}
演示31
#define LETTER 1
#include "stdio.h"
void main()
{
char str[20]="C Language",c;
int i;
i=0;
while((c=str[i])!=\0)
{
i++;
#if LETTER
if(c>=a&&c<=z)
c=c-32;
#else
if(c>=A&&c<=Z)
c=c+32;
#endif
printf("%c",c);
}
}
#include
- 溫馨提示:
1: 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
5. 裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 6.煤礦安全生產(chǎn)科普知識(shí)競(jìng)賽題含答案
- 2.煤礦爆破工技能鑒定試題含答案
- 3.爆破工培訓(xùn)考試試題含答案
- 2.煤礦安全監(jiān)察人員模擬考試題庫(kù)試卷含答案
- 3.金屬非金屬礦山安全管理人員(地下礦山)安全生產(chǎn)模擬考試題庫(kù)試卷含答案
- 4.煤礦特種作業(yè)人員井下電鉗工模擬考試題庫(kù)試卷含答案
- 1 煤礦安全生產(chǎn)及管理知識(shí)測(cè)試題庫(kù)及答案
- 2 各種煤礦安全考試試題含答案
- 1 煤礦安全檢查考試題
- 1 井下放炮員練習(xí)題含答案
- 2煤礦安全監(jiān)測(cè)工種技術(shù)比武題庫(kù)含解析
- 1 礦山應(yīng)急救援安全知識(shí)競(jìng)賽試題
- 1 礦井泵工考試練習(xí)題含答案
- 2煤礦爆破工考試復(fù)習(xí)題含答案
- 1 各種煤礦安全考試試題含答案