標題:
自訂函式 (二)
[打印本頁]
作者:
tonyh
時間:
2021-11-17 16:51
標題:
自訂函式 (二)
利用函式自訂的技巧, 建立一個專門計算三角形面積的函式.
public class Ch50 {
static float tri(float x, float y)
{
return x*y/2;
}
public static void main(String[] args)
{
System.out.println("底7公分,高5公分的三角形,面積為"+tri(7,5)+"平方公分。");
}
}
複製代碼
作者:
袁華岑
時間:
2021-11-17 17:29
public class Tri {
static float tri(float x, float y){
return x*y/2;
}
public static void main(String[] args) {
System.out.println("底7公分,高5公分的三角形,面積為"+ tri(7,5)+"平方公分。");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2