ImoogiWild

Bài 2

Oct 21st, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main(){
  4.     int a ;
  5.     int b ;
  6.     cout<<"Nhap so thu nhat : " ;
  7.     cin>> a;
  8.     cout<<"Nhap so thu high : " ;
  9.     cin>> b;
  10.     cout<<"Tong : "<< a+b << endl;
  11.     cout<<"Hieu : "<< a-b << endl;
  12.     cout<<"Tich : "<< a*b << endl;
  13.     cout<<"Thuong : "<<a/b<< endl;
  14.     return 0;
  15.      }
Add Comment
Please, Sign In to add comment