#29631: C++紀錄


e3524167 (Kenlogin)

學校 : 不指定學校
編號 : 186743
來源 : [182.233.207.92]
最後登入時間 :
2022-03-17 21:12:56
a414. 位元運算之進位篇 -- c910335 | From: [182.233.207.92] | 發表日期 : 2022-03-16 12:21

#include <iostream>

#include <string>

#include <sstream>

#include <cmath>

using namespace std;

int main()

{

ios::sync_with_stdio(false); cin.tie(0);

int a;

while (cin >> a && a != 0)

{

int count;

for (count = 0; a%2 == 1; count++)

{

a = a / 2;

}

cout << count << "\n";

}

}

 

 
ZeroJudge Forum