本帖最後由 tonyh 於 2013-4-20 17:12 編輯
- public class ch64
- {
- public static void main(String args[])
- {
- String str="Hello! My name is Tony!";
- System.out.printf("%s%n",str);
- System.out.printf("%S%n",str); // %S 指定大寫格式
- double pi=3.14159;
- System.out.printf("%.0f%n",pi); // .0 四捨五入至整數位
- System.out.printf("%5.2f%n",pi); // 5.2f 中, 5代表總字元數, 2代表四捨五入至小數後第二位
- System.out.printf("%8.4f%n",pi);
- System.out.printf("%.8f%n",pi);
- }
- }
複製代碼 |