Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int firstNum,secondNum, thirdNum;
  8. cout<< " Enter first number:";
  9. cin>> firstNum;
  10. cout<<" Enter second number:";
  11. cin>> secondNum;
  12. cout<< " Enter third number:";
  13. cin>> thirdNum;
  14. cout<< " Numbers in order:" << firstNum << '' <<secondNum << '' <<thirdNum << '\n';
  15.  
  16. system("PAUSE");
  17. return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement