Problem exponentiate
User kkai
Submission Time 2024-03-03 22:23:51
Score 0
Max Time N/A
Max Memory N/A

Compile Error

exponentiate.cpp:19:50: error: ‘a’ was not declared in this scope
19 | long long result = modularExponentiation(a, b, m);
| ^
exponentiate.cpp:19:53: error: ‘b’ was not declared in this scope
19 | long long result = modularExponentiation(a, b, m);
| ^
exponentiate.cpp:19:56: error: ‘m’ was not declared in this scope; did you mean ‘tm’?
19 | long long result = modularExponentiation(a, b, m);
| ^
| tm
exponentiate.cpp:19:28: error: ‘modularExponentiation’ was not declared in this scope
19 | long long result = modularExponentiation(a, b, m);
| ^~~~~~~~~~~~~~~~~~~~~
exponentiate.cpp:21:9: error: ‘cout’ does not name a type
21 | cou