Ответ на 5
#include <iostream>
using namespace std;
int main() {
int x, k; cout << "Enter x and k "; cin >> x >> k;
if (x / k) cout << "true";
else cout << "false";
return 0;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ на 5
#include <iostream>
using namespace std;
int main() {
int x, k; cout << "Enter x and k "; cin >> x >> k;
if (x / k) cout << "true";
else cout << "false";
return 0;
}