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_Triangle_Number {
    public static void main(String[]Args){
        Scanner abir=new Scanner(System.in);
        System.out.println("entar anum");
        int x=abir.nextInt();
        System.out.println("Sample output");
        int c=1;
        while(c<x){
          System.out.println();
          int d=1;
          while(d<=(x-c)){
            System.out.print(" ");
            d++;
          }
          int e = 1;
          while (e<=(2*(c)-1)){
            if(e==1) 
            {
              System.out.print (e);
            }
            else 
            {
              if (e==2*(c)-1)
              {
                System.out.print (e);
              }
              else 
              {
                System.out.print (" ");
              }
            }
            e++;
          }
          c++;
        }
        System.out.println();
        int f = 1;
        while (f<=(2*x-1))
        {
          System.out.print(f);
          f++;
        }
        System.out.println();
        System.out.println("=======================================================");
      }
}

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

java 空心三角形 - 左对齐数

用java打印菱形。

Java 写三角形 空心三角形 菱形 空心菱形

java 空心三角星

java 空心三角右对齐星

java 空心三角形 - 左对齐星