Submission #243458

#TimeUsernameProblemLanguageResultExecution timeMemory
243458prarie최댓값 (tutorial2)C++14
Compilation error
0 ms0 KiB

int GetMax(int N, int *A){
	int ans = a[0];
	for (int i = 1; i < N; i++) {
		if (ans < a[i]) ans = a[i];
	}
	return ans;
}

Compilation message (stderr)

tutorial2.cpp: In function 'int GetMax(int, int*)':
tutorial2.cpp:3:12: error: 'a' was not declared in this scope
  int ans = a[0];
            ^