fork download
  1. #include <iostream>
  2. #inclide <cmath>
  3. #include <iomanip>
  4. using namespace std;
  5.  
  6. int main() {
  7. int n;
  8. double m;
  9. char k;
  10. cin >> n >> m >> k;
  11. m = (ceil)(m)-1;
  12. cout << n+m+(k-'0');
  13. return 0;
  14. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
1 2 3
compilation info
prog.cpp:2:2: error: invalid preprocessing directive #inclide; did you mean #include?
 #inclide <cmath>
  ^~~~~~~
  include
prog.cpp: In function ‘int main()’:
prog.cpp:11:10: error: ‘ceil’ was not declared in this scope
     m = (ceil)(m)-1;
          ^~~~
stdout
Standard output is empty