freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

20xx電腦編程所有c語言題庫-資料下載頁

2025-01-14 22:02本頁面
  

【正文】 for(i=1。i =======(答案1)======= s=0 =======(答案2)======= i+=2 =========或========= i=i+2 =======(答案3)======= j=j =========或========= i+1j =========或========= j
例如:當n=123114350時,結(jié)果應(yīng)該為:c1=3 c2=1 c3=2。
*/ include int c1, c2, c3。 void fun(long n) { c1=c2=c3=0。 while(n) { /***********SPACE***********/ switch(【?】) { case 1: /***********SPACE***********/ c1++。【?】。 case 2: /***********SPACE***********/ c2++?!?】。 case 3: c3++。 } n/=10。 } } main() { long n=123114350L。 fun(n)。 printf(“\nThe result: \n“)。 printf(“n=%ld c1=%d c2=%d c3=%d\n“,n,c1,c2,c3)。 } 答案: =======(答案1)======= n%10 =======(答案2)======= break =======(答案3)======= break 第38題 () 題號:582 難度:易 第2章 /* 【程序填空】 功能:不用第三個變量,實現(xiàn)兩個數(shù)的對調(diào)操作。
*/ include main() { int a,b。 scanf(“%d %d“,amp。a,amp。b)。 printf(“a=%d,b=%d\n“,a,b)。 /***********SPACE***********/ a= 【?】 。 /***********SPACE***********/ b= 【?】 。 /***********SPACE***********/ a= 【?】 。 printf(“a=%d,b=%d\n“,a,b)。 } 答案: =======(答案1)======= a + b =======(答案2)======= ab =========或========= a b =======(答案3)======= ab =========或========= a b 第39題 () 題號:590 難度:易 第2章 /* 【程序填空】 功能:識別輸入的字符串,每個單詞輸出一行 */ include include void main() { int c。 int inspace。 /***********SPACE***********/ 【?】。 while((c = getchar()) != '\n') { if(c == ' ' || c == '\t' || c == '\n') { /***********SPACE***********/ if(【?】) { inspace = 1。 putchar('\n')。 } } else { inspace = 0。 /***********SPACE***********/ 【?】。 } } } 答案: =======(答案1)======= inspace = 0 =======(答案2)======= inspace == 0 =======(答案3)======= putchar(c) 第40題 () 題號:391 難度:易 第1章 /* 【程序填空】 題目:下列給定程序中,函數(shù)fun的功能是:找出100~999之間(含100和999)所有整數(shù)中各 位上數(shù)字之和為x(x為正整數(shù))的整數(shù),并輸出;符合條件的整數(shù)個數(shù)作為函數(shù)值返回。
例如:當x值為5時,100~999之間各位上數(shù)字之和為5的整數(shù)有:10111213 1202122230313404500,共有15個。
當x值為27時,各位數(shù)字之和為27的整數(shù)是:999,只有1個。
*/ include int fun(int x) { int n, s1, s2, s3, t。 n=0。 t=100。 /***********SPACE***********/ while(t0): “)。 scanf(“%d“,amp。x)。 } printf(“\nThe result is: %d\n“,fun(x))。 } 答案: =======(答案1)======= 999 =======(答案2)======= t/10 =======(答案3)======= x 第41題 () 題號:405 難度:易 第1章 /* 【程序填空】 題目:計算1001000之間有多少個數(shù),其各位數(shù)字之和是5 */ include void main() { int i,s,k,count=0。 for(i=100。i =======(答案1)======= k0 =========或========= k =========或========= k!=0 =======(答案2)======= k/10 =======(答案3)======= continue 第42題 () 題號:468 難度:易 第1章 /* 【程序填空】 題目:函數(shù)fun的功能是:計算如“圖片1”直到“圖片2” 。
若x=。
*/ include include double fun(double x) { double f, t。 int n。 f = + x。 /***********SPACE***********/ t=【?】。 n = 1。 do { n++。 /***********SPACE***********/ t*=()*x/【?】。 f += t。 } /***********SPACE***********/ while(【?】 =1e6)。 return f。 } main() { double x, y。 x=。 y = fun(x)。 printf(“\nThe result is :\n“)。 printf(“x=% y=%\n“, x, y)。 } 答案: =======(答案1)======= x =======(答案2)======= n =======(答案3)======= fabs(t) 第43題 () 題號:613 難度:易 第1章 /* 【程序填空】 給定程序中,程序的功能是:輸出100以內(nèi)能被3整除且個位數(shù)為6 的所有正整數(shù)。請?zhí)羁铡?
*/ include ““ void main() { int i,j。 /***********SPACE***********/ for(i=0?!?】。 i++) { j=i*10+6。 /***********SPACE***********/ if(【?】) continue。 printf(“%d “,j)。 } } 答案: =======(答案1)======= i
*/ include main() { int x,y,z,t。 scanf(“%d%d%d“,amp。x,amp。y,amp。z)。 /***********SPACE***********/ if (xy){【?】} /***********SPACE***********/ if(xz){【?】} /***********SPACE***********/ if(yz){【?】} printf(“small to big: %d %d %d\n“,x,y,z)。 } 答案: =======(答案1)======= t=x。x=y。y=t。 =======(答案2)======= t=x。x=z。z=t。 =======(答案3)======= t=y。y=z。z=t。 第45題 () 題號:338 難度:中 第1章 /* 【程序填空】 功能:以下程序的功能如(圖1)。
*/ include include main() { int f。 /***********SPACE***********/ 【?】。 double t,pi。 t=1。pi=t。f=1。n=。 /***********SPACE***********/ while(【?】 )
點擊復(fù)制文檔內(nèi)容
范文總結(jié)相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1