返回列表 發帖

String.format() 方法

本帖最後由 tonyh 於 2016-11-12 17:23 編輯

利用 String 類別下的 format() 方法,傳回特定格式的字串,其用法與 printf() 類似。
  1. public class Ch134 {
  2.         public static void main(String[] args) {
  3.                 double d=3.1415926;
  4.                 String res=String.format("%.2f", d);
  5.                 System.out.println(res);
  6.         }
  7. }
複製代碼

  1. public class Ch134
  2. {
  3.         
  4.         public static void main(String[] args)
  5.         {
  6.             double pi=3.1415926;
  7.             String r=String.format("%.2f",pi);
  8.             System.out.println(r);
  9.         }
  10. }
複製代碼

TOP

  1. public class Ch01 {
  2.         public static void main(String[] args) {
  3.                 double d=3.1415926;
  4.                 String res=String.format("%.2f", d);
  5.                 System.out.println(res);
  6.         }
  7. }
複製代碼
كخخخخخخخخخخخخخ

TOP

  1. public class Ch134 {
  2.         public static void main(String[] args) {
  3.                 double d=3.1415926;
  4.                 String res=String.format("%.2f", d);
  5.                 System.out.println(res);
  6.         }
  7. }
複製代碼

TOP

  1. public class Ch100 {
  2.         public static void main(String args[])
  3.         {
  4.                 double k=3.1415926;
  5.                 String res=String.format("%.2f",k);
  6.                 System.out.println(res);
  7.         }
  8.        
  9.        
  10. }
複製代碼

TOP

返回列表