11 месяцев назад
Проверка на знание умножения, разности, сложение и возведение в квадрат
#include <iostream> #include <cstdlib> #include <ctime> #include <cmath> using namespace std; int main() { setlocale(LC_ALL, "ru"); int res, otv; int i = 0; res = 0; do { i++; srand(time(0)); int x = rand() % 10 + 1; int y = rand() % 10 + 1; int operation = rand() % 4; switch (operation) { case 0: res = x * y; cout << " Сколько будет " << x << " * " << y << " = "; break; case 1: res = x + y; cout << " Сколько будет " << x << " + " << y << " = "; ...