水一贴
class Test1_Z {
public static void main(String[] args) {
print(9);
}
public static void print(int n) {
for (int i = 1;i <= n ;i++ ) {
for (int j = 1;j <= i ;j++ ) {
System.out.print(j + "*" + i +"=" + (i * j) +'\t');
}
System.out.println();
}
}
} |
|