JAVA循环
Posted wuxioaxian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA循环相关的知识,希望对你有一定的参考价值。
1 public class Xunhuan { 2 3 public static void main(String[] args) { 4 // TODO Auto-generated method stub 5 6 //for循环输出0——10 7 for(int i=0;i<=10;i++) { 8 System.out.println(i); //输出 9 } 10 11 //while循环输出0——10 12 int x=0; 13 while(x<10) { 14 System.out.println(x); 15 x++; 16 } 17 //do...whlie循环输出0——10 18 int n=0; 19 do { 20 System.out.println(n); 21 n++; //自加1 22 }while(n<10); 23 } 24 }
以上是关于JAVA循环的主要内容,如果未能解决你的问题,请参考以下文章