Ответ:
#include <iostream>
using namespace std;
int main()
{
int x, k, c;
cin >> x;
if(x < 0)
cin >> k;
c = x % k;
if(c == 0)
cout << "true";
}
else
cout << "false";
cout << "X должен быть отрицательным и целым.";
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
#include <iostream>
using namespace std;
int main()
{
int x, k, c;
cin >> x;
if(x < 0)
{
cin >> k;
c = x % k;
if(c == 0)
{
cout << "true";
}
else
{
cout << "false";
}
}
else
{
cout << "X должен быть отрицательным и целым.";
}
return 0;
}