for的問題
int num = 999;
int count = 0;
for(count=1;(num/=10)>0;count++);{
? ?System.out.print("它是個"+count+"位的數(shù)");
}
為什么System.out.print("它是個"+count+"位的數(shù)");只執(zhí)行一次!不是應該執(zhí)行3次嗎?
int num = 999;
int count = 0;
for(count=1;(num/=10)>0;count++);{
? ?System.out.print("它是個"+count+"位的數(shù)");
}
為什么System.out.print("它是個"+count+"位的數(shù)");只執(zhí)行一次!不是應該執(zhí)行3次嗎?
2016-11-18
舉報
2016-11-18
? for(count=1;(num/=10)>0;count++);{ ? ?//for()后面多了分號,把分號去掉就好了
? ? System.out.print("它是個"+count+"位的數(shù)");
?}
采納喲喲喲喲
2016-11-19
你這個代碼實際上count的值是3,但是循環(huán)只做了兩次。第一次num=99,第二次num=9,第三次的時候num=0,不再執(zhí)行for循環(huán)。另外你for()后面多了個分號,表示你for()在;那結束,所以只打印了一次“它是個3位數(shù)”,如果想打印三次的話,請參考下面語句
int num = 999;
int count = 0;
for(count=1;num>0;count++){
num/=10; ?//在for語句中執(zhí)行num的運算,避免最后一次循環(huán)不執(zhí)行
? System.out.print("它是個"+count+"位的數(shù)");
}
2016-11-18
? ? ? int num = 999;
? ? ? int count = 0;
? ? ? do{
? ? ? ? ? ? ? count++;
? ? ? ? ? ? ? num = num/10;
? ? ? }while(num>0);
? ? ? System.out.println("它是個"+count+"位的數(shù)!");