當前位置:首頁 » 課程設計 » c語言網路教學平台課程考試答案

c語言網路教學平台課程考試答案

發布時間: 2021-03-02 03:51:53

Ⅰ 求:中國石油大學(華東)現代遠程教育 C語言 在線考試答案

1.從鍵盤輸入10個整數,求其和。
#include <stdio.h>
main()
{
int i,x,s=0;
printf("請輸入10個整數:");
for(i=0;i<10;i++)
{
scanf("%d",&x);
s=s+x;
}
printf("s=%d\n",s);
}
2.計算s=1!+2!+…+10!
方法1:
#include <stdio.h>
main()
{
int i,j;
long s=0,t;
for(i=1;i<=10;i++)
{
t=1;
for(j=1;j<=i;j++)
t=t*j;
s=s+t;
}
printf("1!+2!+...+10!=%ld\n",s);
}
方法2:
#include <stdio.h>
main()
{
int i;
long s=0,t=1;
for(i=1;i<=10;i++)
{
t=t*i;
s=s+t;
}
printf("1!+2!+...+10!=%ld\n",s);
}
3.求100-999中的水仙花數。所謂水仙花數是指一個數的各位數字的立方和等於該數自身的數。如:153=1*1*1+5*5*5+3*3*3 。
方法1:
#include <stdio.h>
main()
{
int n,g,s,b;
for(n=100;n<1000;n++)
{
g=n%10;
s=n/10%10;
b=n/100;
if(n==b*b*b+s*s*s+g*g*g)
printf("%d=%d%d%d\n",n,b,s,g);
}
printf("\n");
}
方法2:
#include <stdio.h>
main()
{
int n,g,s,b;
for(b=1;b<=9;b++)
for(s=0;s<=9;s++)
for(g=0;g<=9;g++)
{
n=100*b+10*s+g;
if(n==b*b*b+s*s*s+g*g*g)
printf("%d%d%d=%d\n",b,s,g,n);
}
printf("\n");
}

Ⅱ C語言考試試題答案

1. 11,12.
2. { ,}, 變數聲明,函數體.
3. int,float,double.
4. 存儲空間.
5. 將10賦值給變數s.
6. ;
7. 1,0.
8. 高

Ⅲ 考試啦,求C語言答案(2)

1,A
2,A
3,B
4,B
5,B
6,B
7,D
8,B
9,C
10,D
11,c
12,B
13,B
14,D
15,A

Ⅳ 繼續教育學院C語言程序設計考試試題答案

四、(1)
i=9,j=10,m=8,n=10.
(2) a,97
a,97
五、
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
if (a>b)
printf("%d",a);
else
printf("%d",b);
system("pause");
return 0;
}

Ⅳ 石油大學c語言在線考試答案

11:big
12:8
13:7
14:max=10, row=1, colum=2
15:6
16:Sum of the digists in 26587 is 28
17:8 10 12
18:
7
a=5,b=4
19:y=1
20:WELCOME

熱點內容
幼師專業怎麼樣 發布:2021-03-16 21:42:13 瀏覽:24
音樂小毛驢故事 發布:2021-03-16 21:40:57 瀏覽:196
昂立中學生教育閘北 發布:2021-03-16 21:40:47 瀏覽:568
建築業一建報考條件 發布:2021-03-16 21:39:53 瀏覽:666
2017年教師資格注冊結果 發布:2021-03-16 21:39:49 瀏覽:642
中國教師資格證查分 發布:2021-03-16 21:39:41 瀏覽:133
踵什麼成語有哪些 發布:2021-03-16 21:38:20 瀏覽:962
東營幼師專業學校 發布:2021-03-16 21:35:26 瀏覽:467
機械電子研究生課程 發布:2021-03-16 21:33:36 瀏覽:875
杭州朝日教育培訓中心怎麼樣 發布:2021-03-16 21:33:28 瀏覽:238