#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
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
int num_1, num_2, result, answer;
cout << "Введите два однозначных числа: " <> num_1;
cin >> num_2;
cin >> answer;
result = num_1 * num_2;
if (num_1 > 9 && num_2 > 9 && num_1 < 0 && num_2 < 0) {
cout << "Вы ввели не однозначное число " << endl;
}
else if (result == answer) {
cout << "Вы ввели правильный ответ! " << result;
}
else if (answer != result) {
cout << "Вы ввели не правильный ответ!\n Correct answer: " << result << endl;
}
}
#include
using namespace std;
int main()
{
cout << "пожалуйста , введите два однозначных числа " <> num1 >> num2;
cout << "напишите ответ умножения данных чисел " <> total;
int total1 = num1 * num2;
if (total = total1) {
cout << "yes , baby" << endl;
}
else {
cout << "no, baby" << endl;
cout << total1 << endl;
}
return 0;
}
if(num1 > 9 && num2 > 9 || num1 < 0 && num2 < 0)
{
cout << "Вы ввели неоднозначное число " << endl;
This line of code goes unnoticed ! Everything else worked out. Tell me ,what did you do wrong ?
may seem strange, but no parenthesis, and this is how it should work
#include
using namespace std;
void main()
{
setlocale(LC_ALL, “rus”);
int a, b, result, answer;
cout << "тест на знание таблицы умножения, enter 2 number" <> a >> b;
cout << "теперь введите произведение этих двух чисел" <> answer;
result = a * b;
if (result == answer)
{
cout << "Правильно, do you know the multiplication table" << endl;
}
else if (answer != result)
{
cout << "не правильно, correct answer: " << result << endl;
}
}
#include
using namespace std;
int main()
{
setlocale(LC_ALL,”rus”);
int x,Y,from;
x=0;
y=0;
z=0;
cout<<"Введите 2 числа"<>x>>Y;
switch(from) {
case’*’:
cout<<x*y;
break;
}
cout<>from;
if (z==x*y){
cout<<"\n"<<"Верно";
}
else
if(from!= X * y){
cout<<"\n"<<"Неверно"<<"\n"<<"x*y="<<x*y;
}
return 0;
}
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
system(“color A “);
char again;
do
{
int First;
int Second;
cout << "Введите первое число " <> First;
cout << "Введите второе число " <> Second;
cout << "Умножь " << First << " on " << Second <> through;
if(thrid == First * Second)
{
cout << "Молодец! you multiplied correctly!\n Do you want to show who is the god of the multiplication table?\n";
}
else
{
cout << "Чеел, you made a mistake, попробуй еще раз\n Докажи что ты бог таблицы умножения\n";
}
cout <> again;
} while (again == ‘Y’);
}
excuse me, forgot to add return at the end 0;
Everything works fine without it though.
int a = 0;
int b = 0;
int c = 0;
int d = 0;
cout << "Введите 2 integers…" << endl;;
cout <> a;
cout <> b;
c = a * b;
cout << "Сейчас я вам задам простую математическую задачу второго класса…" << endl;
cout << "Я ваc попрошу умножить первое число на второе, and enter your answer in the box below." << endl;
cout <> d;
if (c == d)
{
cout << "Да, все верно";
}
if (c != d)
{
cout << "Нет, this is not true, answer " << c<< " will be true" << endl;
}
#include
using namespace std;
int main()
{
setlocale(0, “.1251”);
int n1, n2, on one, result;
cout <> n1;
cout <> n2;
cout <> on one;
result = n1 * n2;
if (num == result) {
cout << "Правильно!";
}
else {
cout << "Не правильно (" << endl;
cout << "Правильный ответ: " << result << endl;
}
return 0;
}
#include
using namespace std;
int main() {
setlocale(LC_ALL, “RU”);
int x, Y;
double a, b;
cout << "Введите 1-е число " <> x;
cout << "Введите 2-е число " <> Y;
cout << "Введите произведение чисел " <> a;
b = x * Y;
if (a != b)
cout << "Неправильно, correct answer " << b << endl;
else cout << "Молодец! Правильно ";
return 0;
}