답안 #145775

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
145775 2019-08-21T06:50:36 Z xxxxorb0221 최댓값 (tutorial2) C++14
컴파일 오류
0 ms 0 KB
#include<cstdio>
#include<algorithm>
using namespace std;
int Getmax(int n,int[] arr){
  int ans=arr[0];
  for(int i=0;i<n;i++)
    ans=max(ans,arr[i]);
  return ans;
}

Compilation message

tutorial2.cpp:4:24: error: expected ',' or '...' before 'arr'
 int Getmax(int n,int[] arr){
                        ^~~
tutorial2.cpp: In function 'int Getmax(int, int*)':
tutorial2.cpp:5:11: error: 'arr' was not declared in this scope
   int ans=arr[0];
           ^~~