Problem | round_up_division |
---|---|
User | AliLam |
Submission Time | 2025-06-17 09:30:41 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
round_up_division.cpp: In function ‘int main()’:
round_up_division.cpp:8:11: error: expected ‘;’ before ‘int’
8 | ans = n/d
| ^
| ;
9 | int rem;
| ~~~
round_up_division.cpp:10:2: error: ‘rem’ was not declared in this scope; did you mean ‘drem’?
10 | rem = n%d
| ^~~
| drem
round_up_division.cpp:15:9: error: expected ‘;’ before ‘else’
15 | ans++
| ^
| ;
16 | else {
| ~~~~
round_up_division.cpp:19:13: error: expected ‘;’ before ‘}’ token
19 | cout << ans
| ^
| ;
20 | }
| ~