【年少の風】java_Conti面白い数字配列
- public class Conti {
-
- public static void main(String[] args) {
-
- for(int i = 0; i < 10; i++) {
- for(int j = i; j <= i*2; j++) {
-
- System.out.print(j + " ");
- }
- System.out.print("
");
- }
- }
- }