fork download
  1. #include "std_lib_facilities.h"
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. string a, b, c = 0;
  7. cout << "Enter three numbers.\n";
  8. cin >> a >> b >> c;
  9.  
  10. if (a > b)
  11. {
  12. a = a / b;
  13. b = b*a;
  14. a = b / a;
  15. }
  16. if (b > c)
  17. {
  18. b = b / c;
  19. c = c*b;
  20. b = c / b;
  21. }
  22. if (b < a)
  23. {
  24. a = a / b;
  25. b = b*a;
  26. a = b / a;
  27. }
  28. cout << a << " " << b << " " << c << "\n";
  29. keep_window_open();
  30. return 0;
  31. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:1:32: fatal error: std_lib_facilities.h: No such file or directory
compilation terminated.
stdout
Standard output is empty