黑马程序员技术交流社区

标题: 多种方法输出1-10 [打印本页]

作者: 强晨曦    时间: 2015-8-25 19:37
标题: 多种方法输出1-10
class Test_HelloWorld {
        public static void main(String[]args) {
                /*
                1,在控制台输出1-10。
                */
                //for循环。
                for (int x1=1; x1<=10; x1++) {
                        System.out.println(x1);
                }
                System.out.println("-------------------------");
                //while循环。
                int x2 = 1;
                while (x2<=10) {
                        System.out.println(x2);
                        x2++;
                }
                System.out.println("-------------------------");
                //do while循环。
                int x3 = 1;
                do{
                        System.out.println(x3);
                        x3++;
                }while(x3<=10);
                System.out.println("-------------------------");
                /*
        }
}




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2