#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()
{
int nNum1, nNum2, nUserMultiply;
cout <> nNum1;
cout <> nNum2;
cout <> nUserMultiply;
if(nUserMultiply==(nNum1*nNum2))
cout << "Ай, молодца! Действительно "
<< (nNum1*nNum2)
<< "!\n";
else
cout << "Ни фига подобного!\nИх произведение будет: "
<< (nNum1*nNum2)
<< "!\n";
return 0;
}
#include
#include
using namespace std;
int main(void)
{
setlocale(LC_ALL, "rus");
int a(0), b(0), c(0);
do {
cout << a;
} while (a >=10);
do {
cout << endl << b;
} while (b >=10);
cout << endl << "Введите произведение этих чисел:\t" << c;
if (c == a * b) {
cout << endl << "Вы ответили правильно!" << endl;
}
else cout << "Вы ответили неверно!" << endl << "Правильный ответ:\t" << (a*b);
_getch();
return 0;
}
Вот моя третья задача, с первой пока не складывается.
#include
using namespace std;
int main()
{
setlocale(LC_ALL, "rus");
float enterNumber = 0;//первое число которое будет вводиться
float interNumber = 0;//второе число которое будет вводиться
float anterNumber = 0;// результат который введет пользователь
cout << enterNumber;
cout << interNumber;
float itog=enterNumber+interNumber;// переменная подсчитает правильный итог
{
cout <<anterNumber;
if (anterNumber==itog) cout << "Вы ввели верно ";//
else if (anterNumber!= itog) cout << "вы ввели не верно, правильный результат = "<<itog;
return 0;
}
}
#include
using namespace std;
int main()
{
setlocale(LC_ALL,"rus");
int a;
int b;
int c;
cout <<"Введите первое однозначное число: " <> a;
cout <<"Введите второе однозначное число: " <> b;
cout <<"Введите произведение чисел: " <> c;
if (c!=a*b)
{
cout << "Произведение неверно! Вот что должно получиться: " << a*b;
}
if (c=a*b)
{
cout << "Абсолютно верно: " << a*b;
}
return 0;
}
Альтернативное решение второй задачки:
int main()
{
setlocale(LC_ALL, "rus");
int variable1 = 0;
int variable2 = 0;
int variable = 0;
int otvet = 0;
cout << variable1 >> variable2;
cout << otvet;
variable = variable1 * variable2;
if (variable == otvet) cout << "Верно\n";
else cout << "Правильный ответ = " << variable <9?
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
int a = 0, b = 0, c = 0;
cout << "Введите первое значение: " <> a;
cout << "Введите второе значение: " <> b;
cout << "Введите произведение введеныx чисел: " <> c;
if (c==a*b)
cout << "Ваш ответ верен " << endl;
else cout << "Ваш ответ не верен, correct answer: " << a * b << endl;
system("pause");
return 0;
}
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
int a, b;
cout <> a;
cout <> b;
if (a > 9 || b > 9)
{
cout <> a;
cout <> b;
}
if (a < 0 || b < 0)
{
cout <> a;
cin >> b;
}
cout <> c;
d = a*b;
while (d != c)// or if(d!=c), но тогда программа запросит результат еще 1 times
{
cout <> c;
}
if (d == c)
cout << "молодец\n";
system("pause");
return 0;
}