標題:
String.format() 方法
[打印本頁]
作者:
tonyh
時間:
2016-11-12 17:13
標題:
String.format() 方法
本帖最後由 tonyh 於 2016-11-12 17:23 編輯
利用 String 類別下的 format() 方法,傳回特定格式的字串,其用法與 printf() 類似。
public class Ch134 {
public static void main(String[] args) {
double d=3.1415926;
String res=String.format("%.2f", d);
System.out.println(res);
}
}
複製代碼
作者:
劉得恩
時間:
2016-11-12 17:25
public class Ch134
{
public static void main(String[] args)
{
double pi=3.1415926;
String r=String.format("%.2f",pi);
System.out.println(r);
}
}
複製代碼
作者:
李允軒
時間:
2016-11-12 17:26
public class Ch01 {
public static void main(String[] args) {
double d=3.1415926;
String res=String.format("%.2f", d);
System.out.println(res);
}
}
複製代碼
作者:
林宇翔
時間:
2016-11-12 17:27
public class Ch134 {
public static void main(String[] args) {
double d=3.1415926;
String res=String.format("%.2f", d);
System.out.println(res);
}
}
複製代碼
作者:
張彥承
時間:
2016-11-12 17:48
public class Ch100 {
public static void main(String args[])
{
double k=3.1415926;
String res=String.format("%.2f",k);
System.out.println(res);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2