Problem fibo
User StarSparrowFox
Submission Time 2025-09-20 19:47:45
Score 0
Max Time N/A
Max Memory N/A

Compile Error

fibo.cpp: In function ‘int main()’:
fibo.cpp:14:15: error: ‘y_’ was not declared in this scope; did you mean ‘y’?
14 | next = (x + y_ % MOD;
| ^~
| y
fibo.cpp:14:23: error: expected ‘)’ before ‘;’ token
14 | next = (x + y_ % MOD;
| ~ ^
| )