1樓:
最後乙個for迴圈體中,**來的 n ,而且也沒有初始化,不妨把 n相關的語句去掉,直接 count++ 記錄個數就行了。
c語言程式設計:將從鍵盤輸入的20個整數存入一維陣列中,計算所有元素的和、平均值及最大值並輸出
2樓:
#include
int main(void)
{int a[20];
int i=0;
for (;i<20;i++)
scanf("%d",&a[i]);
int result=0;
for (i=0;i<20;i++)
result+=a[i];
printf("和為:%d\n平均值為:%f\n",result,result/20.0);/*20.0不能改為20*/
result=a[0]
for (i=1;i<20;i++)
{if (result
2 用VB程式程式設計 從鍵盤上輸入整數,並放入一維陣列中,然後將其前元素與後元素對換
司寇忻 private sub command1 click dim tmp as string,tmp1 as string,a as string me.cls tmp text1.text if not isnumeric tmp then goto outerr a split tmp,if...
從鍵盤上輸入乙個正整數N 求階乘
scanf d n 要加雙引號。printf the result is d s 整數輸出。鍵盤輸入乙個正整數n,計算整數n的階乘n!long fac int k return result void main while m 0 s fac m printf d ld m,s 標頭檔案的部分省去了...
用C 程式設計 從鍵盤上輸入若干學生的成績,統計並輸出最高成績和最低成績,當輸入負數時結束輸入
問明 include using namespace std int main double a 100 double max 0,min 100,t int i for i 0 i 100 i cin a i if a i 0 break else if a i max max a i if a ...