Board logo

標題: printf() 函式 (三) [打印本頁]

作者: tonyh    時間: 2015-10-17 16:49     標題: printf() 函式 (三)

本帖最後由 tonyh 於 2015-10-17 16:52 編輯

[attach]1435[/attach]
  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. }
複製代碼

作者: 張峻瑋    時間: 2015-10-17 16:53

  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. }
複製代碼

作者: 劉得恩    時間: 2015-10-17 16:55

  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. }
複製代碼

作者: 林宇翔    時間: 2015-10-17 16:56

  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. }
複製代碼

作者: 李允軒    時間: 2015-10-17 16:56

  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. }
複製代碼

作者: 張彥承    時間: 2015-10-17 16:59

  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.     }
複製代碼

作者: 周雍程    時間: 2015-10-17 16:59

  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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2