码迷,mamicode.com
首页 > 其他好文 > 详细

while语句版

时间:2018-01-13 00:12:08      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:sys   system   static   []   log   str   dem   print   for   

class Demo {
public static void main(String[] args) {
for(int x=0; x<10; x++) {

//for语句版
System.out.println("HellWorld");
}
System.out.println("-------------");
//while语句版
int x=0;
while(x<10) {
System.out.println("HellWorld");
x++;
}
}

}

while语句版

标签:sys   system   static   []   log   str   dem   print   for   

原文地址:https://www.cnblogs.com/songxue/p/8277882.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!