Problem | round_up_division |
---|---|
User | WangZhenxuan |
Submission Time | 2025-06-17 10:41:35 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
round_up_division.cpp:1:1: error: ‘include’ does not name a type
1 | include <bits/stdc++.h>;
| ^~~~~~~
round_up_division.cpp: In function ‘int main()’:
round_up_division.cpp:6:5: error: ‘cin’ was not declared in this scope
6 | cin >> n >> d;
| ^~~
round_up_division.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | include <bits/stdc++.h>;
round_up_division.cpp:8:5: error: ‘cout’ was not declared in this scope
8 | cout << result << endl;
| ^~~~
round_up_division.cpp:8:5: note: ‘std::cout’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
round_up_division.cpp:8:23: error: ‘endl’ was not declared in this scope
8 | cout << result << endl;
| ^~~~
round_up_division.cpp:1