Problem exponentiate_easy
User Cake
Submission Time 2025-03-01 10:00:17
Score 0
Max Time N/A
Max Memory N/A

Compile Error

exponentiate_easy.cpp:5:17: error: ‘intb’ has not been declared
5 | int expo(int a, intb){
| ^~~~
exponentiate_easy.cpp: In function ‘long long int expo(long long int, int)’:
exponentiate_easy.cpp:6:5: error: ‘b’ was not declared in this scope
6 | if(b==0) return 1;
| ^
exponentiate_easy.cpp:7:20: error: ‘b’ was not declared in this scope
7 | int hold = expo(a,b-1)*a;
| ^
exponentiate_easy.cpp: In function ‘int32_t main()’:
exponentiate_easy.cpp:18:7: error: ‘i’ was not declared in this scope
18 | for (i=0, i<N, i++){
| ^
exponentiate_easy.cpp:25:2: error: expected primary-expression before ‘return’
25 | return 0;
| ^~~~~~
exponentiate_easy.cpp:22:3: error: expected ‘;’ before ‘return’
22 | }
| ^
| ;
......
25 | return 0;
| ~~~~~~
exponentiate_easy.cpp:25:2: error: expected primary-exp