#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL, "rus");
int enterNumber = 0;
cout << "Введите целое число (от 1 до 9999): ";
cin >> enterNumber;
// проверяем входит ли введенное число в заданный диапазон
if (enterNumber <= 0 ||enterNumber > 9999)
cout << "Число не входит в диапазон от 1 до 9999!\n";
else // если да - приступаем к выводу на экран
{
cout << "\nВы ввели: ";
// чтобы добраться до первой цифры в введенном числе
// (если оно четырехзначное), надо это число поделить
// на 1000 и взять от него остаток от деления на 10
// например 8 888 / 1000 = 8 (888 тысячные отбрасываются
// т.к. введенное число типа int), далее 8 % 10 = 8
// так же не ошибитесь с оператором == (равно)
if ((enterNumber / 1000) % 10 == 1) cout << "Одна тысяча ";
else if ((enterNumber / 1000) % 10 == 2) cout << "Две тысячи ";
else if ((enterNumber / 1000) % 10 == 3) cout << "Три тысячи ";
else if ((enterNumber / 1000) % 10 == 4) cout << "Четыре тысячи ";
else if ((enterNumber / 1000) % 10 == 5) cout << "Пять тысяч ";
else if ((enterNumber / 1000) % 10 == 6) cout << "Шесть тысяч ";
else if ((enterNumber / 1000) % 10 == 7) cout << "Семь тысяч ";
else if ((enterNumber / 1000) % 10 == 8) cout << "Восемь тысяч ";
else if ((enterNumber / 1000) % 10 == 9) cout << "Девять тысяч ";
if ((enterNumber / 100) % 10 == 1) cout << "сто ";
else if ((enterNumber / 100) % 10 == 2) cout << "двести ";
else if ((enterNumber / 100) % 10 == 3) cout << "триста ";
else if ((enterNumber / 100) % 10 == 4) cout << "четыреста ";
else if ((enterNumber / 100) % 10 == 5) cout << "пятьсот ";
else if ((enterNumber / 100) % 10 == 6) cout << "шестьсот ";
else if ((enterNumber / 100) % 10 == 7) cout << "семьсот ";
else if ((enterNumber / 100) % 10 == 8) cout << "восемьсот ";
else if ((enterNumber / 100) % 10 == 9) cout << "девятьсот ";
if ((enterNumber / 10) % 10 == 1)
{
if (enterNumber % 10 == 0) cout << "десять долларов";
else if (enterNumber % 10 == 1) cout << "одинадцать долларов";
else if (enterNumber % 10 == 2) cout << "двенадцать долларов";
else if (enterNumber % 10 == 3) cout << "тринадцать долларов";
else if (enterNumber % 10 == 4) cout << "четырнадцать долларов";
else if (enterNumber % 10 == 5) cout << "пятнадцать долларов";
else if (enterNumber % 10 == 6) cout << "шестнадцать долларов";
else if (enterNumber % 10 == 7) cout << "семнадцать долларов";
else if (enterNumber % 10 == 8) cout << "восемнадцать долларов";
else if (enterNumber % 10 == 9) cout << "девятнадцать долларов";
}
if ((enterNumber / 10) % 10 == 2) cout << "двадцать ";
else if ((enterNumber / 10) % 10 == 3) cout << "тридцать ";
else if ((enterNumber / 10) % 10 == 4) cout << "сорок ";
else if ((enterNumber / 10) % 10 == 5) cout << "пятьдесят ";
else if ((enterNumber / 10) % 10 == 6) cout << "шестьдесят ";
else if ((enterNumber / 10) % 10 == 7) cout << "семьдесят ";
else if ((enterNumber / 10) % 10 == 8) cout << "восемьдесят ";
else if ((enterNumber / 10) % 10 == 9) cout << "девяносто ";
if ((enterNumber / 10) % 10 != 1)
{
if (enterNumber % 10 == 0) cout << "долларов";
else if (enterNumber % 10 == 1) cout << "один доллар";
else if (enterNumber % 10 == 2) cout << "два доллара ";
else if (enterNumber % 10 == 3) cout << "три доллара ";
else if (enterNumber % 10 == 4) cout << "четыре доллара ";
else if (enterNumber % 10 == 5) cout << "пять долларов ";
else if (enterNumber % 10 == 6) cout << "шесть долларов ";
else if (enterNumber % 10 == 7) cout << "семь долларов ";
else if (enterNumber % 10 == 8) cout << "восемь долларов ";
else cout << "девять долларов ";
}
}
cout << endl << endl;
return 0;
}
I think this is the best thing you can come up with
#include (iostream)
#include (ctime)
using namespace std;
int main()
{
setlocale(LC_ALL, “RU”);
srand(time(NULL));
int a = rand() % 10, b = rand() % 10, c;
c = a * b;
cout << "\t\t\t\t\t\tШкольные знания\n";
cout << "Решите варажение: " << a << " * " << b
<> a;
if (a != c) {
cout << "Ответ не верный!" << endl;
}
cout << "Правильный ответ = "<< c << endl;
return 0;
}
#include
using namespace std;
int main(){
setlocale(LC_ALL, “ru”);
cout << "Данное приложение проверяет ваше умение к умножению" << endl;
cout << "” << endl;
cout << "Введите два числа, the difference of which you want to guess" <> a;
cin >> b;
cout << "Введите предполагаемый ответ: " <> ans;
real = a * b;
if (real == ans) {
cout << "Правильно! Answer: " << real;
}
else {
cout << "Неправильно! Answer: " << real;
}
cout << endl << endl;
return 0;
}
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
int x,Y,from;
cout <> x;
cout <> Y;
cout <> from;
if ((x*y) == z)cout << "Верно!";
else cout << "Не верно!" << endl;
cout << "Правильный ответ: " << x * Y << endl;
return 0;
}
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
int x,Y,from;
cout <> x;
cout <> Y;
cout <> from;
if ((x*y) == z)cout << "Верно!";
else if ((x*y) != z) cout << "Не верно! \nCorrect answer: " << x * Y << endl;
return 0;
}
int a, b, c;
std::cout << "Проверим таблицу умножения.\n";
std::cout <> a;
std::cin >> b;
if (a == 0 || b == 0) {
std::cout << "\nError..\n";
return 0;
}
std::cout <> c;
int summer = a * b;
if (c == summer) {
std::cout << "\nRight!\n";
}
else {
std::cout << "\n[B]rror..\n";
}
I tried to modify it a little on my own, but the code turned out to be very large
#include
using namespace std;
int main() {
setlocale(LC_ALL, “RU”);
int a = 0;
int b = 0;
int z = 0;
int x = 0;
cout <> a;
cout <> b;
z = a * b;
if (a >= 0 && a = 0 && b <= 9) {
cout <> x;
if (z == x) {
cout << "Вы ответили правильно ";
}
else
{
cout << "Ваш ответ неправильный. "<< endl;
while (from != x)
{
cout <> x; if (z == x) {
cout << "Вы ответили правильно ";
}
}
}
}
else
{
cout << "Значения не должны быть больше 9 или меньше 1";
}
return 0;
}
Your fucking “setlocale(LC_ALL, “RU”);” broke me all the symbols in the document itself and in the output to the terminal. How can I now return it to how it was?????g
#include
using namespace std;
int main() {
setlocale(LC_ALL, “RU”);
int first_digit, second_digit, sumOfDigit, resultOfSum;
cout <> first_digit;
cout <> second_digit;
sumOfDigit = first_digit * second_digit;
cout <> resultOfSum;
if (resultOfSum == sumOfDigit) {
cout << " Right, result = " << sumOfDigit;
}
else {
cout << "Неверно, your result = " << resultOfSum << " , and the correct answer = " << sumOfDigit;
}
return 0;
}
#include
#include
using namespace std;
int main()
{
int num1;
int num2;
int yourChoice;
cout <> num1;
cout <> num2;
int result = num1 * num2;
cout <> yourChoice;
if (yourChoice != result) {
cout << "your were not correct, the result is " << result;
} else {
cout << "Correct!";
}
return 0;
}