返回列表 發帖

自訂函式 (二)

利用函式自訂的技巧, 建立一個專門計算三角形面積的函式.

  1. public class Ch50 {
  2.        
  3.         static float tri(float x, float y)
  4.         {
  5.                 return x*y/2;
  6.         }
  7.        
  8.         public static void main(String[] args)
  9.         {
  10.                 System.out.println("底7公分,高5公分的三角形,面積為"+tri(7,5)+"平方公分。");       
  11.         }
  12. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表