本帖最后由 罗京雨 于 2012-7-10 09:00 编辑
- class Test
- {
- public static void main(String[] args)
- {
- for(int x=0; x<4;x++) //注释:for循环里不能有两个变量。
- {
- int y = 4;
- System.out.println("x="+x);
- y--;
- System.out.println("y="+y);
- }
- for(int x=0; x<4;x++)
- {
- int y = 4;
- System.out.println("x="+x);
- for(int y = 1;y<4;y++) //不看程序在这里在加个for循环呢。
- {}
- y--;
- System.out.println("y="+y);
- }
- }
- }
- //-----------------------------------------
- class Test2
- {
- public static void main(String[] args)
- {
- {
- System.out.println("hehe");
- }
- System.out.println("over---"); //猜猜哪个对
- //现在我才知道局部代码块的作用
- int x = 4; 。
- {
- System.out.println("hehe");
- }
- System.out.println("over---"+x); //猜猜哪个对
-
-
-
- int x = 4; //猜猜哪个对
- System.out.println("hehe");
- System.out.println("over---"+x);
- }
- }
复制代码 |
|