#include <iostream>
int main()
{
setlocale(LC_ALL, "Rus");
int x;
std::cin >> x;
if(x % 9 == 0)
std::cout << "Введённое число кратно 9!";
else
std::cout << "Введённое число не кратно 9!";
return 0;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
int main()
{
setlocale(LC_ALL, "Rus");
int x;
std::cin >> x;
if(x % 9 == 0)
std::cout << "Введённое число кратно 9!";
else
std::cout << "Введённое число не кратно 9!";
return 0;
}