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 Triangle_Right_Justified_Number {
    public static void main(String[]args){
        Scanner abir=new Scanner(System.in);
        System.out.println("Enter sample input");
        int x=abir.nextInt();
        System.out.println("sample output");
        int c=0;
        while(c<x){
          int d=0;
          while(d<x-(c+1)){
            System.out.print(" ");
            d++;
          }
          int e=0;
          while(e<=c){
            System.out.print(e+1);
            e++;
          }
          System.out.println();
          c++;
        }
        System.out.println("=======================================================");
      }
}

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

java 打印三角形 - 右对齐星

java 空心三角右对齐星

java 空心三角形 - 左对齐数

java 打印三角形 - 左对齐数

如何在 UIButton 的右边缘对齐 UIButton 图像

java 空心三角形 - 左对齐星