- class TextChenFaBiao{
- public static void main(String[] args) {
- ChenFaBiao(9);
- ChenFaBiao(3);
- }
- public static void ChenFaBiao(int a){
- for (int i = 1;i <= a ;i++ ) {
- for (int j = 1;j <= i ;j++ ) {
- System.out.print(i + "*" + j + "=" + i * j + "\t");
- }
- System.out.println("");
-
- }
- FenGeXian();
- }
- public static void FenGeXian(){
- for (int i = 0;i < 70 ;i++ )
- System.out.print("-");
- System.out.println("");
- }
- }
复制代码 |
|