// ConsoleApplication60.cpp: определяет точку входа для консольного приложения.//
#include "stdafx.h"#include#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 << "?" << "\n";</span> cout << "Введите ответ и нажмите Enter "; cin >> c; if (x*y == c) { cout << "Правильно\n"; </span> } else { cout << "Вы ошиблись " << x << "*" << y << "=" << c; </span> }return 0;}