- 需求:定义一个功能,能够打印行数为5,列数为5的矩形,并且可以打印任意输入的行数和列数的矩形.
- @author linqin
- v1.1
- */
- /*
- 思路:
- 步骤:
- 1、定义一个功能,该功能的没有具体的返回值类型 void
- 2、定义该功能的过程中有未知内容参与运算int row,int col
- */
- class DemoTest //定义一个类
- {
- //主函数,可以保证该类的独立运行
- public static void main(String[] args)
- {
- juxing();
- printHr();
- juxing(3,4);
- printHr();
- }
- //定义一个功能
- public static void juxing(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 juxing()
- {
- juxing(5,5);
- }
- //定义一个功能
- public static void printHr()
- {
- System.out.println("-----------------------------------------");
- }
- }
复制代码 |