fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. float x , y;
  6. cout << "Please enter the first number" << endl;
  7. cin>>x;
  8. cout << "Please enter the second number" << endl;
  9. cin>>y;
  10. cout << "The multiplication of the two nubmers is " << x*y ;
  11. }
  12.  
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
Please enter the first number
Please enter the second number
The multiplication of the two nubmers is -2.78963e-26