fef
Anonymous
c_cpp
10/25/2023 3:24 PM
292 B
45
Indexable
#include <iostream>
#include <string>
using namespace std;
int main()
{
int n;
cin >> n;
int max = 0;
for (int i = 0; i < n; i++)
{
int a;
cin >> a;
if (a > max) max = a;
}
cout << max;
}Editor is loading...