题解 | #空心正方形图案#

空心正方形图案

http://www.nowcoder.com/practice/72347ee949dc47399186ee183632f303

import java.util.Scanner;
public class Main {
    
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        while(sc.hasNextInt()) {
            int n= sc.nextInt();
            for(int i=1;i<=n;i++) {
                if(i==1||i==n) {
                    for(int j=1;j<=n;j++) {
                        System.out.print("* ");
                    }
                    System.out.println();
                } else {
                    for(int j=1;j<=n;j++) {
                        if(j==1||j==n) {
                            System.out.print("* ");
                        } else {
                            System.out.print("  ");
                        }
                    }
                    System.out.println();
                }
            }
        }
    }
}

全部评论

相关推荐

头像
11-09 17:30
门头沟学院 Java
TYUT太摆金星:我也是,好几个华为的社招找我了
点赞 评论 收藏
分享
ArisRobert:统一解释一下,第4点的意思是,公司按需通知员工,没被通知到的员工是没法去上班的,所以只要没被通知到,就自动离职。就是一种比较抽象的裁员。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务