#20137: 測資WA 求問哪出了問題


z85385637 (M-Kai)

學校 : 樹德科技大學
編號 : 96081
來源 : [180.218.46.214]
最後登入時間 :
2022-10-13 21:14:12
a414. 位元運算之進位篇 -- c910335 | From: [120.119.33.43] | 發表日期 : 2019-12-05 23:40

import java.util.Scanner;

public class a414 {

public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
while(sc.hasNext()) {

int a = sc.nextInt();
int count=0;
if(a==0) {
break;
}else {
for(int i=0 ; a>0 && a%2==1 ;i++) {
a/=2;
count++;
}
System.out.println(count);
}



}

}

}

 
ZeroJudge Forum