class Multable{ |
public void nine() { |
for ( int i = 1 ;i< = 9 ;i + + ) { |
for ( int j = 1 ;j< = i;j + + ) { |
System.out. print (i + "*" + j + "=" + i * j); |
System.out. print ( " " ); |
} |
System.out.println(); |
} |
} |
} |
public class java4 { |
public static void main(String[] args) { |
Multable mul = new Multable(); |
mul.nine(); |
} |
} |
中级程序员
by: 捌月天使 发表于:2021-10-01 17:39:31 顶(0) | 踩(0) 回复
666
回复评论