如何在控制台输出上对齐字符串

2022-09-03 03:53:44

我必须为以下方面编写代码:

Multiplication Tables  Description: Print out the grade school multiplication table upto 12*12

我写了代码:

public class tables {
    public static void main(String[] args) {
        //int[][] table = new int[12][12];
        String table="";
        for(int i=1; i<13; i++){
            for(int j=1; j<13; j++){
                //table[i-1][j-1] = i*j;
                table+=(i*j)+" ";
            }
            System.out.println(table.trim());
            table="";
        }
    }
}

但问题在于输出格式。我需要像矩阵一样的方式输出,每个数字的格式设置为宽度为4(数字右对齐并去除每行上的前导/尾随空格)。我尝试过谷歌,但没有找到任何好的解决方案来解决我的问题。任何人都可以帮我吗?


答案 1

您可以使用 来根据需要格式化输出。format()

    for(int i=1; i<13; i++){
        for(int j=1; j<13; j++){

           System.out.format("%5d", i * j);
        }
        System.out.println();  // To move to the next line.
    }

或者,您也可以使用: -

System.out.print(String.format("%5d", i * j));

代替..System.out.format

以下是对%5d工作原理的解释: -

  • 首先,由于我们正在打印整数,因此我们应该使用哪个是整数的格式说明符。%d
  • 5in 表示输出将采用的总宽度。因此,如果您的值为 5,它将被打印为覆盖 5 个空格,如下所示: -%5d****5
  • %5d用于右对齐。要向左对齐,可以使用 。对于值,这会将您的输出打印为: -%-5d55****

答案 2

在我的示例中,数组包含具有不同长度的字符串,因此我无法排列字符串,并且不同数组的其他字符串在控制台上不匹配。使用不同的概念,我可以在控制台上排列这些数组,我的代码如下。

package arrayformat;

 /**
 *
 * @author Sunil
 */
 public class ArrayFormat {



  /**
  * @param args the command line arguments
  */

  public static void main(String[] args) {

  int[] productId = new int[]  
 {1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,};
   String[] productName= new String[]{"Pepsi","kissan jam","Herbal 
 oil","Garnier man's","Lays chips","biscuits","Bournvita","Cadbury","Parker 
 Vector","Nescafe",};
   String[] productType = new String[]{"Cold Drink","Jam","Oil","Face 
 wash","chips","Biscuits","Health 
 Supplement","Chocolate","Stationary","Coffee",};
    float[] productPrice = new float[]{24,65,30,79,10,20,140,20,150,80,}; 


       int productNameMaxlength=0;
   int productTypeMaxlength=0;



    for (String productName1 : productName) {
        if (productNameMaxlength < productName1.length()) {
            productNameMaxlength = productName1.length();
        }
    }


    for (String productType1 : productType) {
        if (productTypeMaxlength < productType1.length()) {
            productTypeMaxlength = productType1.length();
        }
    }



   for(int i=0;i<productType.length;i++)

   { 
              System.out.print(i);

      System.out.print("\t");

              System.out.print(productId[i]);

              System.out.print("\t");

              System.out.print(productName[i]);

       for(int j=0;j<=productNameMaxlength-productName[i].length
     ();j++)

       {

        System.out.print(" ");

       }

       System.out.print("\t");

       System.out.print(productType[i]);

       for(int j=0;j<=productTypeMaxlength-productType[i].length
    ();j++)

       {
           System.out.print(" ");
       }

               System.out.print("\t");

       System.out.println(productPrice[i]);
          }           
      }

    }
   and output is--
  Sr.No  ID     NAME            TYPE               PRICE
   0    1001    Cadbury         Chocolate           20.0
   1    1002    Parker Vector   Stationary          150.0
   2    1003    Nescafe         Coffee              80.0
   3    1004    kissan jam      Jam                 65.0
   4    1005    Herbal oil      Oil                 30.0
   5    1006    Garnier man's   Face wash           79.0
   6    1007    Lays chips      chips               10.0
   7    1008    biscuits        Biscuits            20.0
   8    1009    Bournvita       Health Supplement   140.0
   9    1010    Pepsi           Cold Drink          24.0

由于我无法回答我的问题,因为我提出了我的问题,因为阻止提问和回答,我引用了我的答案,这是一种不同的数组格式。