#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;
}
[code]
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
int ival1 = 0;
int ival2 = 0;
int ival3 = 0;
cout << "введите 2 and the third number—the multiplication result:"
cin >> ival1;
cin >> ival2;
cin >> ival3;
if (ival1*ival2 == ival3)
cout << "замечательно умножаете!!!";
else
cout << "тут ошибка!!!";
}
[/code]
It is certainly remarkable, but the task is said: The user enters two single-digit numbers. Unambiguous, and you have completed the program in which you can enter any number, you need to add a loop to check the entered numbers on the number of characters. The multiplication table of 1 to 9
Something like this….
[code]
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
int number1 = 0;
int number2 = 0;
int result = 0;
cout <> number1;
if ((number1 >0) && (number1 <10))
{
cout <> number2;
if ((number2 >0) && (number2 <10))
{
cout << "Result " << number1 << "*" << number2 <> result;
int goodResult = 0;
goodResult = number1 * number2;
if (goodResult == result)
cout << "Perfect" << endl;
else
cout << "Error " << number1 << "*" << number2 << "=" << number1*number2 << endl;
}
else
cout << "Fuck you need to 1 – 9" << endl;
}
else
cout << "Fuck you need to 1 – 9" << endl;
return 0;
}
[/code]
2 a task
[code]
/*The user enters the serial number of the finger.
It should show its name on the screen. * /
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “Rus”);
int number;
cout << "Введите номер пальца"
cin >> number;
if (number = 6)
cout << "Вы ввели неверный номер!" << endl;
else
{
if (number == 1) cout << "Большой палец" << endl;
else if (number == 2) cout << "Указательный палец" << endl;
else if (number == 3) cout << "Средний палец" << endl;
else if (number == 4) cout << "Безымяный палец" << endl;
else if (number == 5) cout << "Мезинец палец" << endl;
}
system("pause");
return 0;
}
[/code]
I am waiting for advice and editing from pros :
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “russian”);
int first = 0;
int second = 0;
int third;
do {
cout << "Введите два однозначных числа (0 to exit)\n";
cout <> first;
if(first == 0) return 0;
cout <> second;
while(first != second) {
cout << "Числа не однозначны!\n";
cout <> first;
if(first == 0) return 0;
cout <> second; }
cout <> third;
if(first * second == third)
cout << "Правильно!\n";
else cout << "Неправильно!\n" << "Правильный вариант ответа: " << first * second << "\n";
} while (third != 0);
return 0;
system("pause");
}
Regarding the first task. I am in my life would not have thought of such a thing. Opening decision, got it, but how to think of it before this question. Generally where to start, such programming is such a thing as a block diagram, I just heard about it. but I do not know how to use it. On the other tasks issues have arisen, pretty simple.
The first task: thousands of text or small letters, or complicate and automatically change to hundreds, tens and units.
#include
using namespace std;
int main()
{
cout << "\t\t***tabl_umNojeNia***\n\n"<< endl;
int a, b, res;
cout <> a >> b;
if (a > 10 || a < 2)
{
cout < 10 || b < 2)
{
cout << " error! \n";
return -1;
}
cout <> res;
int i;
i = a*b;
if (res > i || res < i)
{
cout << "incorrect answer!!!\n " << i;
}
if (res = i)
{
cout << " correct answer)";
}
return 0;
}
#include
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
int a, b, c, d, e;
cout << "Ââåäèòå ïåðâóþ öèôðó: " <> a;
cout << "Ââåäèòå âòîðóþ öèôðó: " <> b;
cout << "Íàçîâèòå êàêîâ ðåçóëüòàò: " <> c;
d = a * b;
if (c !=d)
{
cout << "Âàø îòâåò íå âåðíûé ìóäàê!!!" << endl;
cout << "Íàæìè íà êíîïêó ÷òîáû óçíàòü ïðàâèëüíûé îòâåò " <> e;
cout << "Âàø îòâåò ðàâåí: " << d << endl;
}
else if (c==d)
{
cout << "Âû ââåëè ïðàâèëüíûé îòâåò, îäèí õóé òû ìóäàê!!! " << endl;
cout << "Âàø îòâåò ðàâåí: " << d << endl;
}
return 0;
}
Well?
И что это было?