ravesli/lesson_37/main.cpp

43 lines
1.0 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* main.cpp
*
* Created on: 8 авг. 2021 г.
* Author: alexander
*
* Что такое простое число? Правильно!
* Это целое положительное число больше единицы,
* которое делится без остатка либо на себя, либо на единицу.
* Напишите программу, которая просит пользователя ввести
* простое целое число, меньшее 10. Если пользователь ввел
* одно из следующих чисел: 2, 3, 5 или 7 — программа должна вывести
* "The digit is prime", в противном случае — "The digit is not prime".
*/
#include <iostream>
using namespace std;
int main()
{
int d(0);
do
{
cin >> d;
} while (d >= 10);
if (d == 2 || d == 3 || d == 5 || d == 7)
{
cout << "The digit is prime" << endl;
}
else
{
cout << "The digit is not prime" << endl;
}
return 0;
}