標題:
函式的建立與執行 (二)
[打印本頁]
作者:
tonyh
時間:
2012-12-15 17:24
標題:
函式的建立與執行 (二)
建立並執行一個專門計算三角形面積的函式.
public class ch50
{
public static void main(String args[])
{
System.out.println(triangle(3,5));
}
public static float triangle(float x, float y)
{
return x*y/2;
}
}
複製代碼
作者:
t2364705
時間:
2012-12-15 17:26
public class ch50
{
public static void main(String args[])
{
System.out.println(triangle(3,5));
}
public static float triangle(float x, float y)
{
return x*y/2;
}
}
複製代碼
作者:
lon
時間:
2012-12-15 17:27
public class ch50{
public static void main(String args[]){
System.out.println(triangle(3,5));
}
public static float triangle(float x, float y){
return x*y/2
}
}
複製代碼
作者:
粘靖瑜
時間:
2012-12-15 17:27
public class ch50
{
public static void main(String args[])
{
System.out.println(triangle(3,5));
}
public static float triangle(float x, float y)
{
return x*y/2;
}
}
複製代碼
作者:
尤泓鈞
時間:
2012-12-15 17:29
public class ch50
{
public static void main(String args[])
{
System.out.println(triangle(3,5));
}
public static float triangle(float x, float y)
{
return x*y/2;
}
}
複製代碼
作者:
蔡昀佑
時間:
2012-12-15 17:29
public class ch50
{
public static void main(String args[])
{
System.out.println(triangle(3,5));
}
public static float triangle(float x, float y)
{
return x*y/2;
}
}
複製代碼
作者:
t3742238
時間:
2012-12-15 17:31
public class ch50
{
public static void main(String args[])
{
System.out.println(triangle(3,5));
}
public static float triangle(float x ,float y)
{
return x*y/2;
}
}
複製代碼
作者:
劉漢文
時間:
2012-12-15 17:31
public class ch50
{
public static void main(String args[])
{
System.out.println(triangle(3,5));
}
public static float triangle(float x, float y)
{
return x*y/2;
}
}
複製代碼
作者:
黃博鴻
時間:
2012-12-17 18:12
import java.util.Arrays;
public class ch49
{
public static void main(String args[])
{
System.out.println(triangle(3,5));
}
public static float triangle(float a,float b)
{
return a*b/2;
}
}
複製代碼
作者:
粘靖瑜
時間:
2013-1-19 10:06
public class ch50
{
public static void main(String args[])
{
System.out.println(triangle(3,5));
}
public static float triangle(float a, float b)
{
return a*b/2;
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2