fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int amount, fifties;
  6.  
  7.  
  8. cout<<"Please enter amount: ";
  9. cin>>amount;
  10. fifties= amount/50;
  11.  
  12. cout<<"You have entered: "<<amount<<endl;
  13. cout<<"Answer: "<<fifties<<endl;
  14. return 0;
  15. }
Success #stdin #stdout 0s 3464KB
stdin
100
stdout
Please enter amount: You have entered: 100
Answer: 2