// ConsoleApplication60.cpp: определяет точку входа для консольного приложения.//#include "stdafx.h"#include<conio.h>#include"iostream"#include "stdio.h"#include "time.h"using namespace std;int main(){ int x, y,c; setlocale(LC_ALL, "RUS"); srand((unsigned)time(NULL)); x = rand() % 8 + 2; y = rand() % 8 + 2; cout << "Сколько будет " << x << "*" << y << "?" << ""; cout << "Введите ответ и нажмите Enter "; cin >> c; if (x*y == c) { cout << "Правильно"; } else { cout << "Вы ошиблись " << x << "*" << y << "=" << c; }return 0;}