public class Demo {
/*定义一个功能,用于打印矩形。
思路:
1,确定结果:没有,因为直接打印,所以返回值类型为void
2,有未知内容么?有,两个,因为矩形的行和列不确定。
*/
public static void main(String[] args) {
draw(5,6);
printHr();
draw(7,9);
printHr();
}
public static void draw (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 printHr()
{
System.out.println("--------------");
}
}
/*输出结果
******
******
******
******
******
--------------
*********
*********
*********
*********
*********
*********
*********
--------------//菜鸟一枚,发个程序跟大家分享一下。
*/ |