#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 числа и 3е—результат умножения:"
cin >> ival1;
cin >> ival2;
cin >> ival3;
if (ival1*ival2 == ival3)
cout << "замечательно умножаете!!!";
else
cout << "тут ошибка!!!";
}
[/code]
Это конечно замечательно, но в задачи сказано: Пользователь сам вводит два целых однозначных числа. Однозначных, а вы выполнили программу в которой можно вводить любые числа, необходимо добавить цикл на проверку введеных чисел на количество знаков. В таблице умножение от 1 до 9
Как то так….
[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 задача
[code]
/*Пользователь вводит порядковый номер пальца руки.
Необходимо показать его название на экран.*/
#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]
Жду советы и правки от профи :
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “russian”);
int first = 0;
int second = 0;
int third;
do {
cout << "Введите два однозначных числа (0 для выхода)\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");
}
По поводу первой задачи. Я в жизни бы не додумался такое сделать. Открыв решение, все понял, но как самому до этого додуматься это вопрос. Вообще с чего начинать, вроде в программировании есть такое понятие как блок-схема, я просто слышал об этом. но не знаю как это применять. С остальными задачами вопросов не возникло, все довольно просто.
К первому заданию: текст тысяч либо с маленькой буквы, либо усложнять и автоматически менять на сотнях, десятках и единицах.
#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;
}
Ну?
И что это было?