Submission #103005

#TimeUsernameProblemLanguageResultExecution timeMemory
103005CHULMING최댓값 (tutorial2)C++14
Compilation error
0 ms0 KiB
t *A){
	
	int n = A[0];
	
	for(int i=0;i<N;i++)
		if( n < A[i]) n = A[i];
	return n;
}

Compilation message (stderr)

tutorial2.cpp:1:1: error: 't' does not name a type
 t *A){
 ^