Java 中do...while()的使用
Posted 路宇
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 中do...while()的使用相关的知识,希望对你有一定的参考价值。
do…while语句
基本格式:
do
循环体语句
while(条件判断语句);
完整格式:
初始化语句;
do
循环体语句
条件控制语句
while(条件判断语句);
执行流程:
-
执行初始化语句
-
执行循环语句
-
执行条件控制语句
-
执行条件判断语句,看其结果是true还是false
如果为true,继续执行
如果为false,循环结束 -
回到2继续执行
public class doWhileTest
public static void main(String[] args)
//需求:在控制台输出5次hello,world
for (int i = 1; i <= 5; i++)
System.out.println("hello,world");
System.out.println("---------");
int j = 1;
do
System.out.println("hello,world");
j++;
while (j <= 5);
输出结果:
hello,world
hello,world
hello,world
hello,world
hello,world
---------
hello,world
hello,world
hello,world
hello,world
hello,world
以上是关于Java 中do...while()的使用的主要内容,如果未能解决你的问题,请参考以下文章
Java 循环结构 - for, while 及 do...while
JAVA 循环结构 - for, while 及 do...while
052Java中使用do…while循环实现1~100的累加