一.java循环语句分支
二.for循环
在java中for循环和C的循环用法一样
public class demo{ public static void main(String[] args){ for(int i=0;i<9;i++){ System.out.println("输出的i值:" + i); //输出值 System.out.println("\n"); //每输出一个值换行 } } }
但是与C不一样的是,java中还有像python的遍历数组的情况
public class demo{ public static void main(String[] args){ int [] numbers = {10,20,30,40,50}; //数组表示 for(int x : numbers){ //for遍历数组 System.out.println("x的值:" + x + "\n"); } } }
三.while循环
while循环与C语言也是一样的
public class demo{ public static void main(String[] args){ int x = 6; while(x<10){ System.out.println("x的值是:" + x + "\n"); x++; } } }
运行结果:
四.do...while循环
public class demo{ public static void main(String[] args){ int x = 6; do{ System.out.println("x的值是:" + x + "\n"); x++; }while(x<10); //先执行程序,后判断 } }
运行结果与while一样,只不过是先运行程序,后判断
原文地址:https://www.cnblogs.com/Crown-V/p/12368282.html
时间: 2024-11-14 21:35:11