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 Rhombus_Number {
    public static void main(String[]args){
        Scanner abir=new Scanner(System.in);
        System.out.println("Sample Input");
        int x=abir.nextInt();
        System.out.println("Sample output");
        int c=0;
        while(c<x){
          int d=x-1;
          while(d>c){
           System.out.print(" ");
           d--;
          }
          int e=0;
          while(e<=c+c){
            System.out.print(e+1);
            e++;
          }
          System.out.println();
          c++;
        }
        int f=x-2;
        while(f>=0){
          int k=f;
          while(k<x-1){
            System.out.print(" ");
            k++;
          }
          int l=0;
          while(l<=f+f){
            System.out.print(l+1);
            l++;
          }
          f--;
          System.out.println();
        }
        System.out.println("=======================================================");
      }
}

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

使用java打印菱形教学

Java50道经典习题-程序19 输入行数打印菱形图案

打印数字菱形

用java打印菱形。

编写java程序,应用for循环打印菱形。

[模拟] aw3663. 打印数字菱形(模拟+图形打印+曼哈顿距离+找规律)