답안 #513

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
513 2013-02-28T07:31:41 Z jwvg0425 최댓값 (tutorial2) C++
컴파일 오류
0 ms 0 KB
#include <stdio.h>
int GetMax(N, A)
{
  int i,m=A[0];
  for(i=1;i<N;i++)
  {
    if(A[i]>m)m=A[i];
  }
  return m;
}
int main()
{
  int n,a[10],i;
  scanf("%d",&n);
  for(i=0;i<n;i++)
  {
    scanf("%d",&a[i]);
  }
  printf("%d",GetMax(n,a));
}

Compilation message

tutorial2.cpp:2:12: error: 'N' was not declared in this scope
tutorial2.cpp:2:15: error: 'A' was not declared in this scope
tutorial2.cpp:2:16: error: expression list treated as compound expression in initializer [-fpermissive]
tutorial2.cpp:3:1: error: expected ',' or ';' before '{' token