請問為什么不能這樣寫
while(num)
{
??? count++;
??? num/=10;
}
System.out.println("它是個"+count+"位的數(shù)!");
while語句里改成這樣就對了? while(num!=0)
while(num)
{
??? count++;
??? num/=10;
}
System.out.println("它是個"+count+"位的數(shù)!");
while語句里改成這樣就對了? while(num!=0)
2016-03-19
舉報
2016-03-19
while后面的小括號內(nèi)必須是布爾表達(dá)式,值為ture才能執(zhí)行循環(huán)