上传了实验二,已确认无敏感信息

This commit is contained in:
2024-06-10 16:33:43 +08:00
parent 729de600bd
commit f1190f2c2f
6 changed files with 104 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
public class task6 {
public static void main(String[] args) {
for (int i = 1; i <= 9; i++) {
for (int j = 1; j <= i; j++) {
System.out.print(i + "*" + j + "=" + i * j + "\t");
}
System.out.println();
}
}
}