Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main ()
  4. {
  5. float a,b;
  6. cout << "Enter the one value: ";
  7. cin >> a;
  8. cout << "Enter the other value: ";
  9. cin >> b;
  10. cout << a;
  11. cout<<" plus ";
  12. cout<<b;
  13. cout<<" is ";
  14. cout<<a+b;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement