Module: バイナリ シフト (C++)


Problem

4/4

数値が 2 の累乗かどうかを確認する

Problem

数値 x が与えられます。数値が 2 のべき乗であるかどうかを確認
してください。
不足しているコードをプログラムに追加します。
 

 

<頭> <本体>

# 入力 出力
1 2 1
2 3 0
Write the program below
#include<iostream>
using namespace std;

int check(int x) {
	
	return    
}
int main()
{
	int x;
	cin >> x;
	cout << check(x);
	return 0;

}
    

     

Program check result

To check the solution of the problem, you need to register or log in!