Advertisement
Kolyach

1.2

Sep 9th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     setlocale(LC_ALL,"russian");
  8.     float a,b;
  9.     cout << "Введите два числа: ";
  10.     cin >> a >> b;
  11.     cout << "Сумма: " << a+b << endl;
  12.     cout << "Разность: " << a-b << endl;
  13.     cout << "Произведение: " << a*b << endl;
  14.     if (b!=0) {
  15.             cout << "Частное: " << a/b << endl;
  16.     }
  17.     else {
  18.         cout << "На ноль делить нельзя" << endl;
  19.     }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement