那个长方形的问题
public static void printChangFangXing(int row,int col)
{
for(int x=0; x<row; x++)
{
for(int y=0; y<col; y++)
{
System.out.print("*");
}
System.out.println();
}
}
这段代码为什么这样打不行 ?
public static void printChangFangXing(int x,int y)
{
for(int x=0; x<5; x++)
{
for(int y=0; y<6; y++)
{
System.out.print("*");
}
System.out.println();
}
} |
|