#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;
}
#include
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “Rus”);
int a, b,c,d;
cout << "Введите два значения для перемножения:" << "\n";
cout <> a;
cout <> b;
cout <> d;
c = a * b;
if (c==d)cout << "Ответ правильный!";
else cout << "Ответ не верный!"<<endl;
if(c != d)cout << "Верный ответ:"<<c<<endl;
}
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “RU”);
float num1 = 0, num2 = 0;
double result = 0, answer = 0;
cout <> num1;
cout <> num2;
result = num1 * num2;
cout << "Как вы думаете какой результат умножения " << num1 << " * " << num2 <> answer; cout << endl;
if (answer == result)
{
cout << "Ваш ответ полностью верен!\n";
}
else if (answer != result)
{
cout << "Ваш ответ не верен!" << endl
<< num1 << " * " << num2 << " = " << result << endl;
}
return 0;
}
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
int a,b,c,d;
cout << "Введите два натуральных однозначных числа" <> a >> b;
if (a 9 || b 9)
{
cout << "Не натуральные или однозначные числа"<< endl;
return 0;
}
c = a*b;
cout <<endl<< "Введите ответ умноения " << a << " на " << b <> d;
if (c == d)
{
cout <<endl << "Правильно! Вы ввели: " << d << endl << "Ответ: " << c << endl;
}
else
{
cout << "Не правильно. Вы ввели: " << d << endl << "Ответ: " << c;
}
return 0;
}
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
int a=0,t1=0,t2=0,t3=0,t4=0;
cout <> a;
if (a < 0)
{
cout < 10000)
{
cout << "У тебя нет столько денег!\n";
}
else if (a == 10000)
{
cout < 0 && a < 10000)
{
t4 = a % 10;
//cout << t4 << endl;
a /= 10;
t3 = a % 10;
//cout << t3 << endl;
a /= 10;
t2 = a % 10;
//cout << t2 << endl;
a /= 10;
t1 = a % 10;
//cout << t1 << endl;
cout < 0)
{
if (t1 == 1)
cout << "Одну тысячу ";
else if (t1 == 2)
cout << "Две тысячи ";
else if (t1 == 3)
cout << "Три тысячи ";
else if (t1 == 4)
cout << "Четыре тысячи ";
else if (t1 == 5)
cout << "Пять тысяч ";
else if (t1 == 6)
cout << "Шесть тысяч ";
else if (t1 == 7)
cout << "Семь тысяч ";
else if (t1 == 8)
cout << "Восемь тысяч ";
else if (t1 == 9)
cout < 0)
{
if (t2 == 1)
cout << "сто ";
else if (t2 == 2)
cout << "двести ";
else if (t2 == 3)
cout << "тристо ";
else if (t2 == 4)
cout << "четыресто ";
else if (t2 == 5)
cout << "пятьсот ";
else if (t2 == 6)
cout << "шестьсот ";
else if (t2 == 7)
cout << "семьсот ";
else if (t2 == 8)
cout << "восемьсот ";
else if (t2 == 9)
cout <0)
{
if (t3 == 2)
cout << "двадцать ";
else if (t3 == 3)
cout << "тридцать ";
else if (t3 == 4)
cout << "сорок ";
else if (t3 == 5)
cout << "пятьдесят ";
else if (t3 == 6)
cout << "шестьдесят ";
else if (t3 == 7)
cout << "семьдесят ";
else if (t3 == 8)
cout << "восемьдесят ";
else if (t3 == 9)
cout << "девяносто ";
}
if (t3 == 1)
{
if (t4 == 0)
cout << "десять рублей. ";
else if (t4 == 1)
cout << "одинадцать рублей. ";
else if (t4 == 2)
cout << "двенадцать рублей. ";
else if (t4 == 3)
cout << "тринадцать рублей. ";
else if (t4 == 4)
cout << "четырнадцать рублей. ";
else if (t4 == 5)
cout << "пятнадцать рублей. ";
else if (t4 == 6)
cout << "шестнадцать рублей. ";
else if (t4 == 7)
cout << "семнадцать рублей. ";
else if (t4 == 8)
cout << "восемнадцать рублей. ";
else if (t4 == 9)
cout < 0)
{
if (t4 == 0)
cout << "рублей. ";
else if (t4 == 1)
cout << "один рубль. ";
else if (t4 == 2)
cout << "два рубля. ";
else if (t4 == 3)
cout << "три рубля. ";
else if (t4 == 4)
cout << "четыре рубля. ";
else if (t4 == 5)
cout << "пять рублей. ";
else if (t4 == 6)
cout << "шесть рублей. ";
else if (t4 == 7)
cout << "семь рублей. ";
else if (t4 == 8)
cout << "восемь рублей. ";
else if (t4 == 9)
cout << "десять рублей. ";
}
}
return 0;
}
#include
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
int a=10,b=10,c=0;
a++;
b++;
srand(time(0));
a = 2 + rand() % 8;
b = 2 + rand() % 8;
cout << "Проверим твои способности\n";
cout <<"Сколько будет "<< a << " * " << b<> c;
if (c == a * b)
cout << "Правильно!\n";
else
cout << "Не правильно! Ответ: " << a * b << endl;
return 0;
}
сделал немного интереснее
#include
using namespace std;
int main ()
{
int a=0;
cin >> a;
int b=0;
cin >> b;
int ansus=0;
int corans=a*b;
if (corans>=81 || corans<=0)
{
cout << "\nОшибка\n";
return 0; // Добавлен оператор return для завершения программы сразу после вывода сообщения об ошибке
}
if (ansus==corans)
{
cout << "Верно";
}
else
{
cout << "Неверно. Верный ответ:" << corans << endl;
}
return 0;
}
Обновленный код: #include
using namespace std;
int main ()
{
int a=0;
cin >> a;
int b=0;
cin >> b;
int ansus=0;
int corans=a*b;
if (ansus==corans)
{
cout << "Верно";
}
else
{
cout << "Неверно. Верный ответ:" << corans <=81 || corans<=0)
{
cout << "\nОшибка\n";
return 0; // Добавлен оператор return для завершения программы сразу после вывода сообщения об ошибке
} было лишним
#include
#include
int main()
{
int mult;
int a, b;
int ans;
link: std::cout << "Enter two integer values: \n";
std::cout <> a;
std::cout <> b;
if ((a >= 0 || b >= 0) && a < 10 && b < 10)
{
mult = a * b;
std::cout << "Give an answer to the expression: " << a << " * " << b <> ans;
if (ans == mult)
std::cout << "Congratulations! the answer " << mult << " is correct!";
else
{
std::cout << " Unfortunatly the answer " << ans << " is not correct!:-("
"\n the right answer is " << mult << "!";
}
}
else
{
std::cout << "Try to enter a value 1 to 9!";
goto link;
}
}
int number1, number2, sum, sum1;
cout <> number1;
cout <> number2;
cout <> sum;
sum1 = number1 * number2;
if (sum != sum1) {
cout << "Ответ неверный, получится: " << sum1;
}
else if (sum == sum1) {
cout << "Ответ верный! Конечно же получится: " << sum1;
}