- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
// Calc.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
//
#include <iostream>
using namespace std;
int main()
{
int one;
int two;
int plus;
int minus;
int nas;
int del;
int zbdel;
cout << "Zadejte prvni cislo: \n";
cin >> one;
cout << "\n";
cout << "Zadejte druhe cislo: \n";
cin >> two;
plus = one + two;
minus = one - two;
nas = one * two;
del = one / two;
zbdel = one % two;
cout << "Scitani: " << plus << "\n";
cout << "Odcitani: " << minus << "\n";
cout << "Nasobeni: " << nas << "\n";
cout << "Deleni: " << del << "\n";
cout << "Zbytek deleni: " << zbdel << "\n";
}
CBuHOKYP 29.06.2022 00:55 # 0
Steve_Brown 29.06.2022 10:50 # 0
guest6 08.07.2022 14:01 # 0
Об этом инцеденте будет сообщено
CBuHOKYP 08.07.2022 19:46 # +1
Stallman 08.07.2022 13:54 # 0
guest6 08.07.2022 14:00 # −3
Support 09.07.2022 10:44 # 0