Board logo

標題: 為什麼圓面積和圓體積都只有取到第6為阿 [打印本頁]

作者: kim    時間: 2012-7-24 20:30     標題: 為什麼圓面積和圓體積都只有取到第6為阿

  1. public class TQC109 {

  2.         /**
  3.          * @param args
  4.          */
  5.         public static void main(String[] args) {
  6.                 int r=(int)(Math.random()*100)+1;
  7.                 System.out.printf("隨機產生的半徑為:%d\n\n",r);
  8.                 System.out.printf("計算後,半徑為:%d\n\n",r*2);
  9.                 System.out.printf("計算後,圓面積為:%f\n",r*r*Math.PI );
  10.                 System.out.printf("四捨五入至小數第一位,則圓面積為:%.1f\n\n",r*r*Math.PI );
  11.                 System.out.printf("計算後,圓體積為:%f\n",r*r*r*Math.PI *4/3);
  12.                 System.out.printf("四捨五入至小數第一位,則圓體積為:%.1f\n\n",r*r*r*Math.PI *4/3);
  13.         }

  14. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2