返回列表 發帖

printf() 函式 (三)

本帖最後由 tonyh 於 2017-5-6 11:58 編輯

  1. public class Ch67
  2. {
  3.     public static void main(String[] args)
  4.     {
  5.         int a=1;
  6.         int b=12;
  7.         int c=123;
  8.         int d=1234;
  9.         System.out.printf("%04d%n",a);  //輸出寬度為4個字元,若不足以0補上
  10.         System.out.printf("%04d%n",b);
  11.         System.out.printf("%04d%n",c);
  12.         System.out.printf("%04d%n",d);
  13.     }
  14. }
複製代碼

返回列表