| Problem | wronganswer |
|---|---|
| User | notachicken |
| Submission Time | 2026-04-26 13:53:57 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
wronganswer.cpp: In function ‘int main()’:
wronganswer.cpp:10:18: error: too many arguments to function ‘long int random()’
10 | N = random(0, 10)
| ^
In file included from /usr/include/c++/9/bits/std_abs.h:38,
from /usr/include/c++/9/cmath:47,
from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:41,
from wronganswer.cpp:1:
/usr/include/stdlib.h:401:17: note: declared here
401 | extern long int random (void) __THROW;
| ^~~~~~
wronganswer.cpp:10:19: error: expected ‘;’ before ‘cout’
10 | N = random(0, 10)
| ^
| ;
11 | cout << N;
| ~~~~