Module: Bit İşlemleri (C++)


Problem

8/13

Bir sayının ikinin kuvveti olup olmadığını kontrol etme

Problem

Verilen bir sayı x. Bir sayının ikinin kuvveti olup olmadığını kontrol edin.

Eksik kod parçasını programa ekleyin.
 

 

Örnekler


# Girdi Çıktı
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!