FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaTutorial/src/F028_DoWhileLoops.java at master · windweb/JavaTutorial · GitHub
windweb
/
JavaTutorial
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaTutorial
/
src
/
F028_DoWhileLoops.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
35 lines (27 loc) · 1.13 KB
Breadcrumbs
JavaTutorial
/
src
/
F028_DoWhileLoops.java
Copy path
File metadata and controls
35 lines (27 loc) · 1.13 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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"
));
}
}
Back
|
FazBrowse Home
|
New Git URL