#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 “stdafx.h”
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
int a, b, c, d;
cout <> a;
cout <> b;
з = а * b;
cout <> d;
if (d != з) {
cout << "Неверно, результат множення першого числа на друге: " << c << endl;
}
else
cout << "Верно, результат множення першого числа на друге: " << c << endl;
system("pause");
return 0;
}
#include
#include
using namespace std;
int main()
{
ІНТ mnozitel1, mnozitel2, proizvedeniye, otvet;
setlocale(LC_ALL, “російський”);
cout << "Введите первый множитель" <> mnozitel1;
cout << "Введите второй множитель" <> mnozitel2;
proizvedeniye = mnozitel1 * mnozitel2;
cout << "Введите произведение" <> otvet;
if (otvet == proizvedeniye)
{
cout << "Ваш ответ верный" << endl;
}
else
{
cout << "Ваш ответ не верный" << endl;
}
system("pause");
}
#include
using namespace std;
int main()
{
setlocale(LC_ALL, “rus”);
ІНТ iMn1 = 0;
ІНТ iMn2 = 0;
ІНТ iRez1 = 0;
ІНТ iRez2 = 0;
cout <> iMn1;
cout <> iMn2;
cout <> iRez1;
iRez2 = iMn1 * iMn2;
if (iRez1 == iRez2) cout << "Вы правы ";
else cout << "Вы ошиблись правильный результат= " << iRez2 ;
return 0;
}
Як то так вийшло.
#include
using namespace std;
int main(){
int a,b,result,userresult;
cin>>a>>b;
cout<>userresult;
Результат = A * B;
if(Результат == userresult){
cout<<"Otvet Veren";
}else if(result!= userresult){
cout<<"Vi Oshiblis";
}
}
У першому завданні обов'язково використовувати залишок від ділення?
#include “stdafx.h”
#include “iostream”
#include “windows.h”
using namespace std;
int main()
{
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
INT х, і;
ІНТ prod1;
cout << "Давайте проверим ваше знание таблицы умножения! програма повториться 5 раз." << endl;
for (int i = 0; i < 5; i ) {
cout << "Введите два числа: " <> x >> і;
prod1 = х * у;
ІНТ prod2;
if (x > 0 && x 0 && і < 10) {
cout << "Введите результат умножения этих двух чисел: " <> prod2;
if (prod1 == prod2)
cout << "Вы молодец!" << endl;
else if (prod1 != prod2)
cout << "Вы ошиблись, правильну відповідь: " << prod1<<endl;
}
else
cout << "Вы ввели неверные числа." << endl;
}
system("pause");
return 0;
}
#include
int main()
{
setlocale(LC_ALL, “rus”);
int number1 = 0, number2 = 0, олівець-6252d318da341687522897/ 0;
answer:
std::cout << "\nТаблица умножения\n\n";
std::cout <> number1;
std::cout <> number2;
std::cout << "Сколько будет " << number1 << " на " << number2 <> answer;
if((number1 * number2) == answer)
std::cout << "Точно! ";
else
std::cout << "нет! Правильну відповідь " << number1 * number2;
std::cout << std::endl;
goto answer;
return 0;
}
1000000 раз уже здесь в комментариях писали: не пишіть сюди свій код!
1. редактор здесь в комментариях не позволяет корректно изобразить C++ код.
2. ваш код здесь никому и нафиг не нужен … для чего вы его сюда все пишете?
#include
using namespace std;
int a; // Перше число
int b; // друге число
INT C; // Верное произведение
INT d; // Вариант пользователя
int main()
{
setlocale(LC_ALL, “rus”);
cout << "Введите любые два однозначных числа" <> a; // Знаю, что можно прописать cin >> a >> b;
cin >> b;
cout << "Отлично! Теперь напиши свой результат" <> d;
if (д == гр)
cout << "Правильно!" << endl;
else
cout << "Неправильно! Верный результат" << "c" << "а твой" << "d" << endl;
system("pause");
return 0;
}