2397 求最大值 迴圈

CRt0729發表於2024-10-23
#include<bits/stdc++.h>
using namespace std;

int main()
{
    int maxx = 0,i = 1,n = 5; //最大值maxx,迴圈變數i
    while(i <= n) //i=1時,寫i<=n可以實現迴圈n次 
    { 
        int x; cin >> x; //每次迴圈都輸入一個數字x,就可以實現輸入n個數 
        if(x > maxx) maxx = x; //如果新輸入的x比maxx大,那麼替換 
        i++;
    } 
    cout << maxx;
    return 0;
}

相關文章