fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. double s = 14.5;
  6. int m = 4;
  7. double b=s/m ;
  8. std::cout << b << std::endl ;
  9. }
Success #stdin #stdout 0s 3096KB
stdin
Standard input is empty
stdout
3.625