Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
public
class
do_while
{
public
static
void
main
(
String
[
]
args
)
{
int
a
=
0
;
do
{
System
.
out
.
println
(
"nilai a : "
+
a
)
;
a
++;
}
while
(
a
<
5
)
;
}
}