返回列表 發帖

printf() 函式 (三)

本帖最後由 tonyh 於 2015-10-17 16:52 編輯
  1. public class Ch71
  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. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. public class Ch71
  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);  
  10.         System.out.printf("%04d%n",b);
  11.         System.out.printf("%04d%n",c);
  12.         System.out.printf("%04d%n",d);

  13.     }
  14. }
複製代碼

TOP

  1. public class Ch71
  2. {
  3.   public static void main(String args[])
  4.   {
  5.       int a=4,b=34,c=234,d=1234;
  6.       System.out.printf("%04d\n",a);
  7.       System.out.printf("%04d\n",b);
  8.       System.out.printf("%04d\n",c);
  9.       System.out.printf("%04d\n",d);
  10.   }
  11. }
複製代碼

TOP

  1. public class JPD05
  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);  
  10.         System.out.printf("%04d%n",b);
  11.         System.out.printf("%04d%n",c);
  12.         System.out.printf("%04d%n",d);
  13.     }
  14. }
複製代碼

TOP

  1. public class Ch71
  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);
  10.         System.out.printf("%04d%n",b);
  11.         System.out.printf("%04d%n",c);
  12.         System.out.printf("%04d%n",d);
  13.     }
  14. }
複製代碼

TOP

  1. public class JPD01
  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);
  10.       System.out.printf("%04d%n",b);
  11.       System.out.printf("%04d%n",c);
  12.       System.out.printf("%04d%n",d);
  13.     }
  14.     }
複製代碼

TOP

  1. public class Ch71
  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);
  10.         System.out.printf("%04d%n",b);
  11.         System.out.printf("%04d%n",c);
  12.         System.out.printf("%04d%n",d);
  13.     }
  14. }
複製代碼

TOP

返回列表