Compare commits

...

1 Commits

Author SHA1 Message Date
Alexander Zhirov e266e97590 lesson 42 2021-08-13 03:01:46 +03:00
1 changed files with 30 additions and 0 deletions

30
lesson_42/main.cpp Normal file
View File

@ -0,0 +1,30 @@
/*
* main.cpp
*
* Created on: 13 авг. 2021 г.
* Author: alexander
*/
#include <iostream>
using namespace std;
int main()
{
// Задание 1
// 6 + 5 * 4 % 3 = 8, т.к. (6 + ((5 * 4) % 3))
// 1. (5 * 4) = 20
// 2. (20 % 3) = 2
// 3. (6 + 2) = 8
cout << 6 + 5 * 4 % 3 << endl;
// Задание 2
cout << "Введите целое число: ";
int a;
cin >> a;
cout << "Число является" << ((a % 2 == 0) ? " " : " не ") << "четным" << endl;
return 0;
}