Module: 비트 연산(C++)


Problem

8/13

숫자가 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!