Looping di dalam looping II
Seperti yang pertama tapi dimulai dari besar ke kecil (ke bawah)public class Looping2 {
public static void main(String[] args) {
for(int a=1;a<=8;a++){
for(int b=1;b<=a;b++){
System.out.print(b);
}
System.out.println(“”);
}
}
}
run...
run:
1
12
123
1234
12345
123456
1234567
12345678
BUILD SUCCESSFUL (total time: 1 second)
0 comments:
Post a Comment