简单的Java金字塔 – 使用System.out.printf()格式化输出

前端之家收集整理的这篇文章主要介绍了简单的Java金字塔 – 使用System.out.printf()格式化输出前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
目标:

我正在尝试生成类似于下面给出的格式的金字塔.这需要一个基本的Java程序,它接受用户输入,从数字转换为字符串,使用嵌套循环,并生成格式化输出.以下是使用8行的所需输出的示例.

Enter the number of lines: 8

               1              
             2 1 2            
           3 2 1 2 3          
         4 3 2 1 2 3 4        
       5 4 3 2 1 2 3 4 5      
     6 5 4 3 2 1 2 3 4 5 6
   7 6 5 4 3 2 1 2 3 4 5 6 7
 8 7 6 5 4 3 2 1 2 3 4 5 6 7 8

问题:

我相信我有正确增加数字的逻辑,但是我需要帮助格式化金字塔.我可以在每个数字之间添加空格,但如果行数是> 10,然后你可以看到格式搞砸了.在最后一行(第10行),数字1不再居中.是什么原因,我该如何解决这个问题?

我知道我可以使用System.out.printf(“%4s”,value),但想要找到一种方法来做到这一点,如果行数是> 1000.提前感谢您提供更多知识渊博的人给我的任何指导.

1
                 2 1 2
               3 2 1 2 3
             4 3 2 1 2 3 4
           5 4 3 2 1 2 3 4 5
         6 5 4 3 2 1 2 3 4 5 6
       7 6 5 4 3 2 1 2 3 4 5 6 7
     8 7 6 5 4 3 2 1 2 3 4 5 6 7 8
   9 8 7 6 5 4 3 2 1 2 3 4 5 6 7 8 9
 10 9 8 7 6 5 4 3 2 1 2 3 4 5 6 7 8 9 10

我目前的代码

import java.util.Scanner;

public class Pyramid1
{
    public static void main(String[] args)
    {
        int i,j,k,a;

        //Create a Scanner object
        Scanner input = new Scanner (System.in);

        //Prompt the user to enter number of rows in pyramid
        System.out.print("Enter number of rows: ");

        int rows = input.nextInt();
        a = rows;

        //Logic
        for (i=1; i<=rows; i++)
        {
            for (j=a; j>1; j--)
            {
                System.out.printf(" %s"," ");
            }

            for (k=i; k!=0; k--)
            {
                String str1 = "" + k;
                System.out.printf(" %s",str1);
            }
            a--;

            for (int l=2; l<=i; l++)
            {
                String str2 = "" + l;
                System.out.printf(" %s",str2);
            }

            System.out.println();
        }
    }
}

解决方法

我这里是您的要求的代码
import java.util.Scanner;

public class Pyramid1
{   
    public static void main(String[] args)
    {
        int i,a;

        //Create a Scanner object
        Scanner input = new Scanner (System.in);

        //Prompt the user to enter number of rows in pyramid
        System.out.print("Enter number of rows: ");

        int rows = input.nextInt();
        a = rows;

        int length = ("" + rows).length();

        String str = " %"+length+"s";

        for (i=1; i<=rows; i++)
        {
            for (j=a; j>1; j--)
            {
                System.out.printf(str," ");
            }

            for (k=i; k!=0; k--)
            {
                String str1 = "" + k;
                System.out.printf(str,str1);
            }
            a--;

            for (int l=2; l<=i; l++)
            {
                String str2 = "" + l;
                System.out.printf(str,str2);
            }

            System.out.println();
        }
    }
}
原文链接:https://www.f2er.com/java/130166.html

猜你在找的Java相关文章