java九九乘法表

package com.hanqi;
import java.util.*;
public class zuoye99chengfabiao {
    public static void main(String[] args)
    {
        for(int a=1;a<=9;a++)
        {
            for(int b=1;b<=a;b++)
            {
                int c=a*b;
            System.out.print("	"+a+"*"+b+"="+c);
           
         
            }System.out.println("
");
        }
    }

}
原文地址:https://www.cnblogs.com/zzyu/p/5480596.html