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!