一个奇迹

P1434 [SHOI2002] 滑雪

HYR00000 @ 2024-08-14 22:43:12

P1434 [SHOI2002] 滑雪本题我代码是瞎写的竟然有20分。

哈哈哈。


by HYR00000 @ 2024-08-14 22:45:00

代码:

#include<bits/stdc++.h>
using namespace std;

int r,c,mp[100][100],imax;
int main(){
    cin>>r>>c;
    for(int i=1;i<=r;i++){
        for(int j=1;j<=r;j++){
            cin>>mp[i][j];
            imax=max(mp[i][j],imax);
        }
    }
    cout<<imax;
    return 0;
}

|