带有用户输入的 Java Do-While 循环
在本文中,我们将讨论在 Java 中使用 do while
循环。
在 Java 中使用 do-while
循环
do-while
循环类似于其他循环,如 java 中的 for
和 while
循环。它还用于根据特定条件反复迭代。
do-while
循环的独特之处在于它的独特之处在于 do-while
循环至少执行一次循环体,然后执行循环的条件表达式,可以是 true
或 假
。条件表达式必须是布尔表达式。
语法:
Do{
//body of the loop;
} while(Condition);
代码示例:
package codes;
public class Codes {
public static void main(String[] args) {
int count = 0;
//Do-While loop
do {
System.out.println("This is the Do part of the loop"); // Body of the loop
}
// Conditional expression of the loop
while (count > 1);
System.out.println("The Conditional expression is false so the Loop is terminated in the first iteration ");
}
}
输出:
This is the Do part of the loop
The Conditional expression is false so the Loop is terminated in the first iteration
do-while
循环语句
do-while
循环的工作非常简单。do-while
循环有两部分,一是主体部分,二是条件部分。
首先,无论条件表达式如何,主体都会执行一次,然后条件表达式会检查是否为 True
。循环将继续执行;否则,循环将被终止。
代码示例:
package codes;
public class Codes {
public static void main(String[] args) {
int count = 0;
//Do-While loop
do {
System.out.println("Count is "+ count); // Body of the loop
}
// Conditional expression of the loop
while (count++ < 9);
}
}
输出:
Count is 0
Count is 1
Count is 2
Count is 3
Count is 4
Count is 5
Count is 6
Count is 7
Count is 8
Count is 9
在本例中,首先执行循环的 do
部分,然后检查条件,直到条件为 true
。循环相应地进行了迭代,但随着条件变为假
,循环终止。
在 Java 中使用 do-while
循环获取用户输入
正如所讨论的,do-while
循环有时是 Java 编程语言的理想特性,因为有时你希望在循环终止之前执行循环体。就像显示菜单,要求玩游戏,甚至在循环的 do
部分中获取用户的输入,然后在循环的条件表达式中使用该输入。
在 do-while
循环中接受用户的输入是你将遇到的最有用的情况之一。
代码示例:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
String input;
String buyAgain = null;
do
{
System.out.println("********MENU********");
System.out.println("Press 1 for Coke");
System.out.println("Press 2 for Tea");
System.out.println("Press 3 for Orange Juice");
System.out.println("Press 4 for Coffee");
input = scan.next();
if(input.equals("1"))
{
System.out.println("Your Coke is ready, Please enjoy it");
}
else if(input.equals("2"))
{
System.out.println("Please take your Tea and enjoy");
}
else if(input.equals("3"))
{
System.out.println("Enjoy your Orange juice");
}
else if(input.equals("4"))
{
System.out.println("Here's your Coffe Please enjoy");
}
else
{
System.out.println("Invalid input\nPress 1 to view menu");
buyAgain = scan.next();
}
System.out.println("Would you like something else\nPress 1 for yes and 0 for not now");
buyAgain = scan.next();
}
while(!buyAgain.equals("0"));
}
}
输出:
********MENU********
Press 1 for Coke
Press 2 for Tea
Press 3 for Orange Juice
Press 4 for Coffee
1
Your Coke is ready, Please enjoy it
Would you like something else
Press 1 for yes and 0 for not now
1
********MENU********
Press 1 for Coke
Press 2 for Tea
Press 3 for Orange Juice
Press 4 for Coffee
0
Invalid input
Press 1 to view menu
1
Would you like something else
Press 1 for yes and 0 for not now
0
在这段代码中,do
部分用于显示菜单并接受用户输入,而条件部分取决于用户输入。
相关文章
在 Java 中简化或减少分数
发布时间:2023/09/28 浏览次数:186 分类:Java
-
在数学中,分数是表示为商的数字。它以 a/b 形式表示,其中 a 是被除数(分子),b 是除数(分母)。在数学中,分数代表整体的一部分或一部分。它有分子和分母两部分,其中分子是被除数
在 Java 中计算两点之间的距离
发布时间:2023/09/28 浏览次数:84 分类:Java
-
使用勾股定理,我们可以在 Java 中找到两点之间的距离。本文介绍如何在 Java 中计算两点之间的距离。
在 Java 中计算欧几里得距离
发布时间:2023/09/28 浏览次数:80 分类:Java
-
本文将帮助你使用 Java 计算两点之间的距离。在本文中,我们将研究两点之间距离的计算。在 Java 中计算欧几里得距离
在 Java 中计算数学表达式
发布时间:2023/09/28 浏览次数:146 分类:Java
-
在 Java 编程语言中,你可以使用堆栈计算算术表达式。堆栈是一种适用于先进后出(FILO) 或后进先出(LIFO) 的数据结构机制,我们将使用它来评估算术表达式。
使用 Java FFMPEG 将文件从一种格式转换为另一种格式
发布时间:2023/09/28 浏览次数:97 分类:Java
-
本文演示了如何使用 Java 包装器和 Java 运行时运行 FFMPEG 将文件从一种格式转换为另一种格式。FFMPEG 最适合内容创建者或大多数时间与媒体文件交互的人。今天,我们将探讨如何使用 Java FFMPE
Java 中使用多个变量进行 for 循环
发布时间:2023/09/28 浏览次数:179 分类:Java
-
本文将介绍使用多变量的 for 循环的方法。本文介绍了我们如何在 Java for 循环中使用多个变量。我们可以通过正确遵循 java for 循环的语法来实现。
退出 Java 中的 While 循环
发布时间:2023/09/28 浏览次数:110 分类:Java
-
这篇文章就是要知道如何在 Java 中退出 while 循环。本文介绍了如何退出 Java 中的 while 循环并通过一些示例代码对其进行处理,以帮助你进一步理解该主题。
打破 Java 中的嵌套循环
发布时间:2023/09/28 浏览次数:200 分类:Java
-
这篇文章讨论了如何在 Java 中打破嵌套循环的方法。本文介绍了如何在 Java 中打破嵌套循环的方法。我们包含了一些示例程序,你可以将其作为指南。
在 Java 中跳出 for 循环
发布时间:2023/09/28 浏览次数:112 分类:Java
-
本文将教我们如何跳出 Java 中的 for 循环。在编程中,某些条件需要中断 for 循环或任何其他与此相关的循环。让我们来看看。