求解,哪里出錯(cuò)了
?public class HelloWorld{
?public static void main(String[] args){?
int num = 999;
int count = 0;?
for(count=0;num=999){
?? ?count++ ? ?
? ? num/10?
?? ?if(num/10==0); ? ??
System.out.println("它是個(gè)"+count+"位的數(shù)");
}
?public class HelloWorld{
?public static void main(String[] args){?
int num = 999;
int count = 0;?
for(count=0;num=999){
?? ?count++ ? ?
? ? num/10?
?? ?if(num/10==0); ? ??
System.out.println("它是個(gè)"+count+"位的數(shù)");
}
2017-02-21
舉報(bào)
2017-02-21
for循環(huán)用的不對(duì)?? ?,if那個(gè)可以省掉,for循環(huán)會(huì)幫你篩選的
public class Qiuweishu?
{
public static void main(String[] args)?
{
int num = 999;
? ? ? ? int count = 0;?
? ? ? ? for(;num!=0;count++){ ??
? ? ? ? ?num=num/10; } ? ?
? ? ? ? ? ?System.out.println("它是個(gè)"+count+"位的數(shù)");
}
}
2017-02-21
2017-02-21
循環(huán)沒有結(jié)束的條件(break),或者這一開始循環(huán)就結(jié)束了,int num=999???----for(count=0;num=999?????)
2017-02-21
for語(yǔ)句循環(huán)條件沒有