问答详情
源自:4-15 编程练习

为什么int count = 0;放到for()里面赋值就会报错,for之前赋值就没问题

public class HelloWorld{

public static void main(String[] args){

int num = 999;

int count = 0;

for(;num!=0;count++){

    num/=10;

}

System.out.println("它是个"+count+"位的数!");

}

}


提问者:日月无极 2019-08-19 00:54

个回答

  • 慕少050366
    2019-08-19 10:52:50
    已采纳

    因为count如果放在for循环里面定义的话 就是内部定义,count只能在for循环里面使用 ,System.out.println("它是个"+count+"位的数!");中的count就找不到定义了

  • qq_慕前端4391558
    2019-08-19 11:20:42

    System.out.println("它是个"+count+"位的数!");里面还有个count

  • weixin_慕姐7359895
    2019-08-19 11:13:45

    在for循环里面定义就只能在for循环里面使用了