java 空心矩形数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 空心矩形数相关的知识,希望对你有一定的参考价值。

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package BASICJAVA;

import java.util.Scanner;

/**
 *
 * @author ABIR
 */
public class Hollow_Rectangle_Number {
    public static void main(String[]args){
        Scanner abir=new Scanner(System.in);
        System.out.println("Enter sample input");
        int x=abir.nextInt();
        int y=abir.nextInt();
        System.out.println("sample output");
        int d=0;
        while(d<y){
          System.out.print(d+1);
          d++;
        }
        System.out.println();
        int e=0;
        while(e<x-2){
          System.out.print(e+1);
          int f=0;
          while(f<y-2){
            System.out.print(" ");
            f++;
            }
          System.out.print(f+1);
          System.out.println();
          e++;
          }
          int g=0;
          while(g<y){
            System.out.print(g+1);
            g++;
          }
          System.out.println();
          System.out.println("=======================================================");
      }
}

以上是关于java 空心矩形数的主要内容,如果未能解决你的问题,请参考以下文章

java 打印空心菱形数

java 空心三角数

java 空心三角右对齐数

java 空心三角形 - 左对齐数

使用for循环打印矩形和三角形菱形空心菱形

8.Python基础语法续光说不练假把式,上题