#include <iostream>
#include "math.h"
using namespace std;
int main() {
setlocale(LC_ALL, "rus");
int N, k = 1;
cin >> N;
while (k < N) {
k *= 3;
}
if (k == N) {
cout << "Является";
else{
cout << "Не является";
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
#include "math.h"
using namespace std;
int main() {
setlocale(LC_ALL, "rus");
int N, k = 1;
cin >> N;
while (k < N) {
k *= 3;
}
if (k == N) {
cout << "Является";
}
else{
cout << "Не является";
}
return 0;
}