返回列表 發帖

printf() 函式 (二)

%s 字串, %d 數值
%3d 代表3位數字, %3s 代表3個文字字串
%6.2f 代表6位數字,2位小數
例如:
假設pi為變數=>float pi=3.14159265359

print("pi:%.4f"%pi);    #四捨五入至小數點後4位
print("pi:%.3f"%pi);    #四捨五入至小數點後3位
print("pi:%.0f"%pi);    #四捨五入至小數點後0位
print("pi:%8.2f"%pi);   #指定總長度為8個字元&四捨五入至小數點後2位
print("pi:%010.2f"%pi);  #指定總長度為10個字元&長度不足補0&四捨五入至小數點後2位
print("pi:%09.3f"%pi); #指定總長度為9個字元&長度不足補0&四捨五入至小數點後3位


假設本練習中的四個變數分別為
double a=3.456789;
double b=34.56789;
double c=345.6789;
double d=3456.789;

試利用printf()函式完成如下之執行畫面:

  1. public class Ch100 {

  2.         public static void main(String[] args) {
  3.                 double a=3.456789;
  4.                 double b=34.56789;
  5.                 double c=345.6789;
  6.                 double d=3456.789;

  7.                 System.out.printf("%.1f%n",c);   //四捨五入至小數點後1位
  8.                 System.out.printf("%.0f%n",d);
  9.                 System.out.printf("%9.2f%n",a);
  10.                 System.out.printf("%9.2f%n",b);  //指定總長度為9個字元
  11.                 System.out.printf("%09.2f%n",c);  
  12.                 System.out.printf("%09.2f%n",d); //指定總長度為9個字元,不足的部分以0補上
  13.         }

  14. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表