public class ForWhileDemo04 {
public static void main(String[] args) {
//输出99乘法表
for(int i=1;i<=9;i++){
for (int j =1; j <=i; j++) {
System.out.print(j + "*" + i +"="+(i * j) + "\t");
}
System.out.println();
}
//print输出完不会换行
//println输出完会换行
}
}
2023-12-02 19:41:52
public class ForWhileDemo04 {
public static void main(String[] args) {
//输出99乘法表
for(int i=1;i<=9;i++){
for (int j =1; j <=i; j++) {
System.out.print(j + "*" + i +"="+(i * j) + "\t");
}
System.out.println();
}
//print输出完不会换行
//println输出完会换行
}
}