標題:
自訂函式 (二)
[打印本頁]
作者:
陳品肇
時間:
2019-7-5 10:10
標題:
自訂函式 (二)
利用函式自訂的技巧, 建立一個專門計算三角形面積的函式.
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)+"平方公分。");
}
}
複製代碼
作者:
黃恆嘉
時間:
2019-7-5 10:15
public class Ch09 {
static float tri(float x, float y) {
return x * y / 2;
}
public static void main(String[] args) {
System.out.println("底6公分,高5公分的三角形,面積為" + tri(6, 5) + "平方公分。");
}
}
複製代碼
作者:
蔣宗儒
時間:
2019-7-5 10:15
import java.util.Scanner;
public class junior {
static double area(float a, float b) {
return a * b / 2;
}
public static void main(String args[]) {
double r = area(7, 5);
System.out.print(r);
}
}
複製代碼
作者:
呂昀宸
時間:
2019-7-5 10:16
public class n {
static double myPlus(double a, double b)
{
return a*b/2;
}
public static void main(String[] args) {
System.out.println("底7高5的三角形的面積為"+myPlus(5,7));
}
}
複製代碼
作者:
張閎鈞
時間:
2019-7-5 10:16
package text369;
public class text45 {
static float io(float x,float y)
{
return x*y/2;
}
public static void main(String[] args) {
System.out.print("底7公分,高5公分的三角形,面積為"+io(7,5)+"平方公分");
}
}
複製代碼
作者:
林侑成
時間:
2019-7-5 10:16
package asdf;
public class QWER
{
static float t(float x, float y)
{
return x*y/2;
}
public static void main(String[] args)
{
System.out.println("底7公分,高5公分的三角形,面積為"+t(7,5)+"平方公分。");
}
}
複製代碼
作者:
潘承渙
時間:
2019-7-5 10:17
public class Ch11 {
static void hello(int n){
for(int i=0;i<n;i++){
System.out.println("Hello!!!");
}
}
static float tri(float a,float b ){
return a*b/2;
}
public static void main(String[] args){
System.out.println("底7公分,高5公分的三角形,面積為"+tri(7,5)+"平方公分。");
}
}
複製代碼
作者:
湯東緯
時間:
2019-7-5 10:18
import java.util.*;
public class Ch01 {
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)+"平方公分。");
}
}
複製代碼
作者:
黃安立
時間:
2019-7-5 10:19
本帖最後由 黃安立 於 2019-7-5 10:26 編輯
public class Ch09 {
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://istak.org.tw/seed/)
Powered by Discuz! 7.2