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("\t"+a+"*"+b+"="+c);
           
         
            }System.out.println("\n");
        }
    }

}

 

posted @ 2016-05-11 08:29  薛岩  阅读(162)  评论(0编辑  收藏  举报