返回列表 發帖

[隨堂測驗]printf() 函式 (一)

本帖最後由 鄭繼威 於 2022-7-9 16:49 編輯

假設本練習中的四個變數分別為
  1. double a=1.234567;
  2. double b=12.34567;
  3. double c=123.456;
  4. double d=1234.5;
複製代碼
試利用printf()函式完成如下之執行畫面:
  1. package javaapplication1;

  2. /**
  3. *
  4. * @author karta
  5. */
  6. public class JavaApplication1 {

  7.     /**
  8.      * @param args the command line arguments
  9.      */
  10.     public static void main(String[] args) {
  11.         double a=1.234567;
  12.         double b=12.34567;
  13.         double c=123.456;
  14.         double d=1234.5;

  15.         System.out.printf("a:%.4f%n",a);    //四捨五入至小數點後4位
  16.         System.out.printf("b:%.3f%n",b);    //四捨五入至小數點後3位
  17.         System.out.printf("c:%.0f%n",c);    //四捨五入至小數點後0位
  18.         System.out.printf("d:%8.2f%n",d);   //指定總長度為8個字元&四捨五入至小數點後2位
  19.         System.out.printf("c:%010.2f%n",c);  //指定總長度為10個字元&長度不足補0&四捨五入至小數點後2位
  20.         System.out.printf("d:%09.3f%n",d); //指定總長度為9個字元&長度不足補0&四捨五入至小數點後3位
  21.     }
  22.    
  23. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊
istak.teach2@gmail.com

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表