English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

有10個元素的陣列(由鍵盤輸入)
1:把大於60的數字印出來
2:大於60的數字有幾個

2006-01-08 15:10:50 · 1 個解答 · 發問者 劉星宇 4 in 電腦與網際網路 程式設計

1 個解答

先把數字存起來 再找出>60的數字 並計算個數
(我懷疑這是作業...)

#include
#include

int main(void)
{
int num[10], i, count;
for(i=0;i<10;i++)
scanf("%d", &num[i]); /*使用者輸入數字*/
count=0; /*個數歸0*/
printf(">60的數字:");
for(i=0;i<10;i++)
if(num[i]>60) /*>60 印出 count加1*/
{
printf("%d ", num[i]);
count++;
}
printf("\n個數:%d\n", count);
system("pause");
}

2006-01-08 16:09:44 · answer #1 · answered by ? 2 · 0 0

fedest.com, questions and answers