Problem | exponentiate_ex |
---|---|
User | YellowPurpleDragon |
Submission Time | 2025-01-10 07:14:31 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
exponentiate_ex.cpp: In function ‘int main()’:
exponentiate_ex.cpp:9:2: error: ‘ll’ was not declared in this scope
9 | ll d; cin >> d;
| ^~
exponentiate_ex.cpp:9:15: error: ‘d’ was not declared in this scope
9 | ll d; cin >> d;
| ^
exponentiate_ex.cpp:10:9: error: expected ‘;’ before ‘i’
10 | for (ll i = 0; i < d; i++) {
| ^~
| ;
exponentiate_ex.cpp:10:17: error: ‘i’ was not declared in this scope
10 | for (ll i = 0; i < d; i++) {
| ^
exponentiate_ex.cpp:11:5: error: expected ‘;’ before ‘e’
11 | ll e, a, f; cin >> e >> a >> f; ll out = 1;
| ^~
| ;
exponentiate_ex.cpp:11:22: error: ‘e’ was not declared in this scope
11 | ll e, a, f; cin >> e >> a >> f; ll out = 1;
| ^
exponentiate_ex.cpp:11:27: error: ‘a’ was not declared