public class Demo03 {
public static void main(String[] args) {
for(int m=1;m<10;m++) {
for(int n=1;n<10;n++) {
System.out.print(m+"*"+n+"="+m*n+" ");
}
System.out.println();
}
}
}
public static void main(String[] args) {
for(int m=1;m<10;m++) {
for(int n=1;n<10;n++) {
System.out.print(m+"*"+n+"="+m*n+" ");
}
System.out.println();
}
}
}
8824

被折叠的 条评论
为什么被折叠?



