| Problem | exponentiate |
|---|---|
| User | nzx |
| Submission Time | 2025-12-20 08:54:40 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
exponentiate.cpp: In function ‘long long int expo(long long int, long long int, long long int)’:
exponentiate.cpp:7:14: error: ‘b’ was not declared in this scope
7 | else if (b%2==1){
| ^
exponentiate.cpp:8:24: error: ‘a’ was not declared in this scope
8 | int ans = expo(a, b-1,m)*a;
| ^
exponentiate.cpp:13:24: error: ‘a’ was not declared in this scope
13 | int ans = expo(a, b/2,m);
| ^
exponentiate.cpp: In function ‘int main()’:
exponentiate.cpp:21:24: error: ‘T’ was not declared in this scope
21 | for(int i = 0; i < T; i++){
| ^