답안 #3120

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
3120 2013-08-25T12:50:02 Z beegle20 최댓값 (tutorial2) C++
컴파일 오류
0 ms 0 KB
#include "grader.h"
int GetMax(int N, int* arr)
{
  int max=0;
  for(int i=0;i<N;i++)if(max<arr[i]) max=arr[i];
  return max;
}

Compilation message

tutorial2.cpp:1:20: fatal error: grader.h: No such file or directory
compilation terminated.