Guest User

Untitled

a guest
Jun 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #include <iostream.h>
  2. int main()
  3. {
  4. cout << "Please enter your first number\n";
  5. float x;
  6. cin >>x;
  7.  
  8.  
  9. cout << "Please enter your second number\n";
  10. float y;
  11. cin >>y;
  12.  
  13.  
  14. cout << x + y;
  15. system("PAUSE");
  16. return 1;
  17. }
Add Comment
Please, Sign In to add comment