16

我必须为以下内容编写代码:

乘法表说明:打印出小学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 的宽度(数字是右对齐的,并在每行上去掉前导/尾随空格)。我试过谷歌但没有找到任何好的解决我的问题的方法。有人可以帮帮我吗?

4

3 回答 3

38

您可以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工作的解释: -

  • 首先,因为我们要打印整数,所以我们应该使用%dwhich 是整数的格式说明符。
  • 5in%5d表示您的输出将占用的总宽度。因此,如果您的值为 5,它将被打印为覆盖 5 个空格,如下所示:-****5
  • %5d用于右对齐。对于左对齐,您可以使用%-5d. 对于 value 5,这会将您的输出打印为: - 5****
于 2012-10-09T05:57:48.810 回答
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

由于我无法回答我的问题,因为我无法回答问题和回答,所以我引用了我的答案,我觉得这是一种不同的数组格式。

于 2015-07-16T18:27:45.527 回答
0

可以使用 System.out.format("","") 方法对输出进行格式化,该方法包含两个输入参数,第一个定义格式样式,第二个定义要打印的值。让我们假设您想要将 n 位值右对齐。您将传递第一个参数“%4d”。

对于左对齐使用 -ve %-nd

对于右对齐使用 +ve %nd

 for(int i=1; i<13; i++){
       for(int j=1; j<13; j++){
            System.out.format("%4d", i * j);  //each number formatted to a width of 4 so use %4d in the format method.
    }
    System.out.println();  // To move to the next line.
}
于 2016-08-09T10:07:45.037 回答