本帖最后由 zclove898 于 2012-2-19 16:04 编辑
帮忙看看我的这个九九乘法表哪里出问题了,运行了好几遍,就是出不了正三角形状,都郁闷了
public class Chen
{
public static void main(String args[])
{
int x,y;
for(x=1;x<=9;x++)
{
for(y=1;y<=x;y++)
System.out.print(y+"*"+x+"="+y*x+"\t");
}
System.out.println();
}
} |
|