C語言 1 一些練習題

2021-09-16 12:54:54 字數 1101 閱讀 3580

#include#includeint main()

#include#includeint main()

思路分析:建立乙個臨時變數max,陣列遍歷出的每乙個數都與max比較,如果比max大就賦給max,最終輸出的max就是陣列中最大的數

#include#includeint main()

; int max = 0;

for (int i = 0; i < 11; ++i) }

printf("%d\n", max);

system("pause");

return 0;

}

思路分析:把兩個數先比較得出乙個較大值與乙個較小值,在把第三個數與之分別相比,如果比較大值大,說明第三個字是最大的,如果比較小值小,說明第三個數最小,如果處於中間,說明第三個數是中間的數字

#define _crt_secure_no_warnings

#include#includeint main()

if (a < b)

if (c>max)

if (c < min)

else printf("%d %d %d", max, c, min);

system("pause");

return 0;

}

思路分析:短除法的**體現

反思:函式命名不規範

#define _crt_secure_no_warnings

#include#includeint zuidagongyueshu(int x, int y)

//80%70==10,此時繼續求70和10的最大公約數,結果為10

//那麼,10就是80和70的最大公約數

else return zuidagongyueshu(y, x%y);

}int main()

C語言 4 一些練習題

反思 函式命名太隨便,不規範 define crt secure no warnings include includevoid chengfabiao int num printf n 迴圈結束後換行 int main 反思 函式命名太隨便,不規範 define crt secure no war...

c語言練習題1

1 編寫乙個程式實現求圓形的面積,使用者自己輸入半徑?s pi r r include define pi 3.14 int main int argc,const char argv 2 編寫乙個遞迴函式,求乙個整數的2進製形式。include void calc int n int main i...

C語言練習題1

1 隨機函式 產生四個0 9之間的數字,不是產生乙個四位數 a.srand unsigned time null 以當前時間為準,設定隨機種子 注意 此函式,在每次開始遊戲後呼叫一次即可 b.rand 注意 rand 函式,每呼叫一次,產生乙個隨機數字以上所需標頭檔案 include srand r...