C語言 求10 個整數中最大值

2021-09-12 21:23:12 字數 494 閱讀 2909

求10個整數中的最大值。

先建立乙個能夠儲存10個資料的陣列,輸入資料,將第乙個值賦給變數max,然後依次將陣列中的每乙個數與max比較,當max小於對應的數時,則將對應的數賦給max,10個值全部執行完畢之後,max中便是這是個值中最大的值,輸出max即可。

#define _crt_secure_no_warnings

#include #include int main() ;

printf("輸入10個整數:\n");

for (int i = 0; i < 10; i++)

int i = 0;

int max = n[0];

while (i <= 9)

i++;

} printf("這10個整數中最大的是%d\n", max);

system("pause");

return 0;

}

求10 個整數中最大值

題目 求10 個整數中最大值 分析 可以預設第乙個數為最大,用max儲存最大數字,然後每輸入乙個數字,就與max進行比較,不斷更新max的值。最後max中儲存的值就是最大數字。這裡10個整數可以不用陣列儲存,逐一輸入比較 也可以用陣列儲存,然後遍歷比較。define crt secure no wa...

求10 個整數中最大值。

求10 個整數中最大值。define crt secure no warnings include int main max a 0 for i 0 i 10 i else printf 這十個整數的最大值是 d n max system pause 程式設計思路 首先從鍵入十個整數 由於數值較多,...

C語言 鍵盤輸入4個整數,找出其中最大值。

題目 鍵盤輸入4個整數,找出其中最大值。本題可以用巢狀的if語句來做 include int main else printf d n max getch return 0 這個程式寫起來很麻煩,且邏輯關係複雜,不容易看懂,顯然這不是乙個好演算法。改為下面的方法 用邏輯運算子連線關係表示式。incl...