Problem exponentiate
User AthanChee03
Submission Time 2023-11-10 09:19:29
Score 0
Max Time N/A
Max Memory N/A

Compile Error

exponentiate.cpp: In function ‘int main()’:
exponentiate.cpp:13:10: error: redeclaration of ‘double result’
13 | double result = (result%M)
| ^~~~~~
exponentiate.cpp:12:10: note: ‘double result’ previously declared here
12 | double result = (pow(A,B));
| ^~~~~~
exponentiate.cpp:13:26: error: invalid operands of types ‘double’ and ‘int’ to binary ‘operator%’
13 | double result = (result%M)
| ~~~~~~^~
| | |
| double int