標題:
109面積與體積計算
[打印本頁]
作者:
may
時間:
2012-2-11 09:51
標題:
109面積與體積計算
隨機產生一1-100的整數為半徑.....
作者:
lon
時間:
2012-2-11 10:51
[attach]568[/attach]
作者:
TOM
時間:
2012-2-11 10:54
public class jva109{
public static void main(String arg[])
{
int r=(int)(Math.random()*100)+1;
System.out.printf("隨機產生的半徑為:%d\n\n",r);
System.out.printf("計算後,直徑為:%d\n\n",r*2);
System.out.printf("計算後,圓面積為:%f\n",r*r*Math.PI);
System.out.printf("四捨五入至小數第1位,則圓面積為:%.1f\n\n",r*r*Math.PI);
System.out.printf("計算後,圓體積為:%f\n",r*r*Math.PI*4/3);
System.out.printf("四捨五入至小數第1位,則圓體積為:%.1f",r*r*Math.PI*4/3);
}
}
複製代碼
作者:
johnson
時間:
2012-7-16 09:12
public class TQC109 {
public static void main(String arg[]) {
int r = (int) (Math.random() * 100) + 1;
System.out.printf("隨機產生的半徑為:%d\n\n", r);
System.out.printf("計算後,直徑為:%d\n\n", r * 2);
System.out.printf("計算後,圓面積為:%f\n", r * r * Math.PI);
System.out.printf("四捨五入至小數第1位,則圓面積為:%.1f\n\n", r * r * Math.PI);
System.out.printf("計算後,圓體積為:%f\n", r * r * Math.PI * 4 / 3);
System.out.printf("四捨五入至小數第1位,則圓體積為:%.1f", r * r * Math.PI * 4 / 3);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2