Problem | exponentiate |
---|---|
User | UVRAYS |
Submission Time | 2024-11-07 13:51:11 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
exponentiate.cpp:2:20: error: expected ‘;’ before ‘int’
2 | using namespace std
| ^
| ;
3 | int main(){
| ~~~
exponentiate.cpp: In function ‘int main()’:
exponentiate.cpp:7:17: error: expected ‘;’ before ‘long’
7 | cin >> A, B, M
| ^
| ;
8 | long long result = pow(A, B)
| ~~~~