Submission #1889

#TimeUsernameProblemLanguageResultExecution timeMemory
1889mh5664최댓값 (tutorial2)C++98
Compilation error
0 ms0 KiB
#include <stdio.h> FILE *in = fopen ("input.txt", "r"), *out = fopen ("output.txt", "w"); void main () { int n, d, max = -2147483647; fscanf (in, "%d", &n); for (int i = 0; i < n; ++i) { fscanf (in, "%d", &d); if (max < d) max = d; } fprintf (out, "%d", max); fclose (in); fclose (out); }

Compilation message (stderr)

tutorial2.cpp:5:12: error: '::main' must return 'int'
tutorial2.cpp: In function 'int main()':
tutorial2.cpp:8:23: warning: ignoring return value of 'int fscanf(FILE*, const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
tutorial2.cpp:12:24: warning: ignoring return value of 'int fscanf(FILE*, const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]