Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
public
class
siku_siku
{
public
static
void
main
(
String
[
]
args
)
{
int
x
=
5
;
for
(
int
i
=
1
;
i
<=
5
;
i
++
)
{
for
(
int
j
=
1
;
j
<=
i
;
j
++
)
{
System
.
out
.
print
(
"*"
)
;
}
System
.
out
.
println
(
)
;
}
}
}