Problem exponentiate
User scape167
Submission Time 2024-01-08 14:57:38
Score 0
Max Time N/A
Max Memory N/A

Compile Error

exponentiate.cpp: In function ‘ll half(ll, ll, ll)’:
exponentiate.cpp:8:9: error: expected ‘,’ or ‘;’ before ‘if’
8 | if (b%2 == 0){
| ^~
exponentiate.cpp:11:8: error: expected ‘}’ before ‘else’
11 | else{
| ^~~~
exponentiate.cpp:6:16: note: to match this ‘{’
6 | if (b != 0){
| ^
exponentiate.cpp:12:22: error: ‘k’ was not declared in this scope
12 | ll n = (k*k)%m;
| ^
exponentiate.cpp: At global scope:
exponentiate.cpp:16:5: error: expected unqualified-id before ‘else’
16 | else return 1;
| ^~~~
exponentiate.cpp:17:1: error: expected declaration before ‘}’ token
17 | }
| ^