标签:
package com.wh.multiplication public class Multiplication Table { public static void main(String[] args) { for (int i = 1; i < 10; i++) { for (int j =1; j <=i; j++) { if(j!=i){ System.out.print(j+"*"+i+"="+(j*i)+"\t"); }else{ System.out.println(j+"*"+i+"="+(j*i)); } } } } }
标签:
原文地址:http://www.cnblogs.com/1020182600HENG/p/5866094.html