Advertisement
Felanpro

Basic C++ Calculator (Addition)

Nov 4th, 2015
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <iostream>
  3. #include <string>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     bool userType = true;
  10.    
  11.     do{
  12.     int a;
  13.     int b;
  14.     int sum;
  15.    
  16.     cout << "Enter a number: ";
  17.     cin >> a;
  18.    
  19.     cout << "Enter another number: ";
  20.     cin >> b;
  21.    
  22.     sum = a + b;
  23.    
  24.     cout << "Answer: " << sum << "  :)" << endl;
  25.     system("pause");
  26.     }while(userType = true);
  27.    
  28.    
  29.     return 0;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement