标签:
package zfc;
public class Zfc {
public static void main(String[] args)
{
//九九乘法表
for(int x = 1; x <= 9; x++)
{
for(int y = 1; y <= x; y++)
{
System.out.print(y + "×" + x + "=" + (x*y) + "; ");
}
System.out.println();
}
}
}
标签:
原文地址:http://www.cnblogs.com/dirgo/p/4866194.html