fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. string part_num;
  7. string part_des;
  8. int part_price;
  9. int part_quant;
  10.  
  11. cout<<"Please enter the part number: ";
  12. cin>>part_num;
  13. cout<<"\n" << part_num <<endl;
  14.  
  15. cout<<"Please enter the part description: ";
  16. cin>>part_des;
  17. cout<<"\n" << part_des <<endl;
  18.  
  19. cout<<"Please enter the part price: ";
  20. cin>>part_price;
  21. cout<<"\n" << part_price <<endl;
  22.  
  23. cout<<"Please enter the part quantity: ";
  24. cin>>part_quant;
  25. cout<<"\n" << part_quant <<endl;
  26. }
Success #stdin #stdout 0s 3344KB
stdin
Standard input is empty
stdout
Please enter the part number: 

Please enter the part description: 

Please enter the part price: 
134515563
Please enter the part quantity: 
-1217908748