Відповідь:
#include <iostream>
using namespace std;
int main(){
setlocale(LC_ALL, "Rus");
int number,x;
cout << "Введите число: ";
cin >> number;
x = number % 10;
if(x == 1){
if(number % 3 == 0){
cout << "Кратное" << endl;
}
else{
cout << "Не кратное" << endl;
cout << "Не кончаеться на 1" << endl;
return 0;
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
#include <iostream>
using namespace std;
int main(){
setlocale(LC_ALL, "Rus");
int number,x;
cout << "Введите число: ";
cin >> number;
x = number % 10;
if(x == 1){
if(number % 3 == 0){
cout << "Кратное" << endl;
}
else{
cout << "Не кратное" << endl;
}
}
else{
cout << "Не кончаеться на 1" << endl;
}
return 0;
}