Module: Bitoperationen (C++)


Problem

8/13

Überprüfen, ob eine Zahl eine zweifache Potenz ist

Problem

Дано число x. Проверить, является ли число степенью двойки.

Добавьте в программу недостающий фрагмент кода.
  & nbsp;

Примеры
deutsch Входные данныеВыходные данные

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!