输入相应长宽,用*输出相应的矩形,实心,空心

这篇博客展示了如何使用Java的Scanner类获取用户输入,然后根据输入绘制实心和空心矩形。程序通过嵌套循环来打印星号,形成矩形形状。对于实心矩形,所有内部位置都打印星号;而对于空心矩形,只有边界打印星号。
摘要由CSDN通过智能技术生成

实心

import java.util.Scanner;
public class ChangKuan {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in); //使用Scanner类定义对象
        System.out.println("please input a int number(Representative length)");
        int a = in.nextInt();
        Scanner op = new Scanner(System.in); //使用Scanner类定义对象
        System.out.println("please input a int number(Representative width)");
        int b = in.nextInt();
        if (a == 0 && b == 0) {
            System.out.println("无法创建长度为0的矩形");
        }
        for (int i = 1; i <= a; i++) {
            for (int j = 1; j <= b; j++) {
                System.out.print("*");
            }
            System.out.println();
        }
    }
}

空心

import java.util.Scanner;
public class ChangKuan2 {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in); //使用Scanner类定义对象
        System.out.println("please input a int number(Representative length)");
        int a = in.nextInt();
        Scanner op = new Scanner(System.in); //使用Scanner类定义对象
        System.out.println("please input a int number(Representative width)");
        int b = in.nextInt();
        if (a == 0 && b == 0) {
            System.out.println("无法创建长度为0的矩形");
        }
        for (int i=0;i<a;i++) {
            for (int j=0;j<b;j++) {
                if ( i == 0 ) {
                    System.out.print("*");
                }
                else if (i == a-1) {
                    System.out.print("*");
                }
                else if (j == 0 || j == b-1) {
                    System.out.print("*");
                }
                else {
                    System.out.print(" ");
                }
            }
            System.out.println();
        }
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值