本帖最后由 Lam 于 2014-5-9 09:39 编辑
- class ForDemo
- {
- public static void main(String[] args)
- {
- for (int x=0;x<3 ;x++) <b> </b><font color="#ff0000">//变量 int x=0 是否是局部变量?作用域如何?</font>
- {
- System.out.println("x="+x);
- }
- int x=1 <font color="#ff0000">//变量 int x=1 是否是全局变量?作用域如何?</font>
- while(x<3)
- {
- System.out.println("x="+x);
- x++;
- }
- }
- }
复制代码 |
|