-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathF028_DoWhileLoops.java
More file actions
35 lines (27 loc) · 1.13 KB
/
F028_DoWhileLoops.java
File metadata and controls
35 lines (27 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* Do-While Loops / Цикл do-while
do-while - цикл, который выполняет определенное количество итераций
до тех пор, пока выражение истинно.
Цикл do-while выполняется хотя бы один раз, потом проверяет условие.
Пример:
do {
// do something
} while (условие);
*/
import java.util.Scanner;
public class F028_DoWhileLoops {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String input = "";
// while (!input.equals("stop")) {
// System.out.print("Enter something or 'stop': ");
// input = scanner.next().toLowerCase();
// System.out.println("You entered: " + input);
// }
// перепишем код выше с использованием цикла do-while
do {
System.out.print("Enter something or 'stop': ");
input = scanner.next().toLowerCase();
System.out.println("You entered: " + input);
} while (!input.equals("stop"));
}
}