如图所示:
1 2 3 4 5 6 7 8 9
2 4 6 8 10 12 14 16 18
3 6 9 12 15 18 21 24 29
4...................................................
5..................................................
6..................................................
7....................................................
8..................................................
9..................................................
我写出了前两行的代码,关键是他不能分行输出,这是代码:
public class table{
public static void main(String args[]){
for(int a=1;a<=81;a++){
if(a<10){
System.out.print(a);
System.out.print(" ");}
if((a<20)&&((a%2)==0)){
System.out.print(a);
System.out.print(" ");}
编译通过,只不过执行时全部出现在1行,想了半天,也想不出问题所在……
请指点下……