#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
#include
using namespace std;
int main()
{
setlocale (LC_ALL,”Росія”);
подвійні х,і,n,b;
cout<<"введи первое число"<>x;
cout<<"введи число на которое надо умножить"<>і;
б = х * у;
cout<<x<<"*(помноживши)"<<і;
cout<<endl<<"ваш отвеееееееееееет?"<>n;
if (n!= X * Y)
{
cout<<"неверно! не парься посмотри на правильный ответ";
cout<<endl<<"правильный ответ"<<endl<<b;
}
else if (п = х * у)
{
cout<<"верно! так держать";
}
return 0;
}
Навіщо потрібна 47 рядок коду в 1 завданню ?
#include
using namespace std;
int main()
{
setlocale(0,””);
int a,b,res,res2;
cout<<"Введите 2 целых однозначный числа"<>a>>b;
cout<<"Какой результат умножения "<<a<<" на "<<b<<" ?"<>res2;
if(res2 == рез)
cout<<"Все верно!!))"<<endl;
else
cout<<"Ответ не верен, правильный ответ "<<res<<endl;
}
#include
#include
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “російський”);
int a, b, c;
cout<>a;
cout<>b;
cout<>c;
if (з == A * B)
cout<<"Правильно! відповідь: "<<а * б<<endl;
else
cout<<"Не правильно! відповідь: "<<а * б<<endl;
return 0;
}
#include
#include
#include
#include
#include
#прагма hdrstop
//—————————————————————————
#прагма argsused
int main(INT ARGC, символ * ARGV[])
{
int a,b,c;
setlocale(LC_ALL, “russian_russia.1251”);
SetConsoleOutputCP(1251);
SetConsoleCP(1251);
в будь-який час:
cout<>a;
cout<>b;
secondTime:
cout<<a<<" * "<<b<>c;
if (A * B == C)
{
cout<<"Âåðíî! \n";
Гото AnyTime;
}
else
{
cout<<"Ìäà… Ooieou, áðàòèê! Іо І.Є. ÷ ACI, ïîïðîáóé а.о. Дак! \n";
Гото secondTime;
Геч();
} return 0;
}
Ось правильне рішення калькулятора.
======================================
#include
using namespace std;
int main()
{
int a , b, c, d;
cout << "Таблица умножения." << endl;
cout << "Введите 2 числа." << endl;
cout <> a;
cout <> b;
cout << "Сколько будет " << a << " * " << b <> c;
D = A * b;
if(a * б == гр)
{
cout << "Верно." << endl;
}
else
{
cout << "Не верно!" << endl;
cout << "Будет: " << d << endl;
}
system("pause");
return 0;
}
Тобто таблиці множення :D
Правильне рішення
#include “pch.h”
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
пливи, b, result, c;
cout << "///////////ПРОВЕРКА НА ЗНАНИЕ ТАПЛИЦЫ УМНОЖЕНИЯ.///////////\n\n";
cout << "Введиде два числа\n";
cout <> a;
cout <> b;
cout <> c;
Результат = а * b;
if (з == Результат) {
cout << "Ответ " << c << " вірний" << endl;
}
else {
cout << "Ответ " << c << " не верный\n";
cout << "Верный ответ " << result;
}
cout << endl << endl;
return 0;
}
#include “pch.h”
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
пливи, b, result, c;
cout << "///////////ПРОВЕРКА НА ЗНАНИЕ ТАПЛИЦЫ УМНОЖЕНИЯ.///////////\n\n";
cout << "Введиде два числа\n";
cout <> a;
cout <> b;
cout <> c;
Результат = а * b;
if (з == Результат) {
cout << "Ответ " << c << " вірний" << endl;
}
else {
cout << "Ответ " << c << " не верный\n";
cout << "Верный ответ " << result;
}
cout << endl << endl;
return 0;
}
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
INT х;
INT у;
ІНТ г;
cout<>x;
cout<>і;
cout<>від;
if(г == х * у)
cout<<від<<" это верный ответ ";
else
cout<<"Нет. вірна відповідь: "<<х * у;
}