30题哪错了(我不理解)

Kinghero King of the summit 2022-04-05 16:46:59 1
#include <bits/stdc++.h>
using namespace std;
int main()
{
    int n,max = 0;
    cin>>n;
    int num[n];
    for(int i = 0;i < n;i++)
    {
	    cin>>num[i];	
    } 
    for(int j = 0;j < n;j++)
    {
	    if(num[j] > max)
	    {
		    num[j] = max;
	    }
    }
    cout<<max;
    return 0;
}
{{ vote && vote.total.up }}

共 12 条回复

CPP 刷题王

定义一个变量就可以了

CPP 刷题王

其实数组都不用

zhengchenhao1

不用这么麻烦

zhengchenhao1

if (a > max) { max = a;

zhengchenhao1

i=1

CPP 刷题王

我刚提交过了

CPP 刷题王
#include <bits/stdc++.h>
using namespace std;
int main() {
    int n, max = 0;
    cin >> n;
    int num[n];
    for (int i = 0; i < n; i++) {
        cin >> num[i];
    }
    for (int j = 0; j < n; j++) {
        if (num[j] > max) {
            max = num[j];
        }
    }
    cout << max;
    return 0;
}
Kinghero King of the summit

李老师救救我

Kinghero King of the summit

还是错的

Kinghero King of the summit

谢谢了