標題:
自定函式
[打印本頁]
作者:
葉桔良
時間:
2022-1-8 15:29
標題:
自定函式
package function_test;
public class test {
public static void main(String[] args) {
int a=1,b=5;
System.out.print(plus(a,b));
}
static int plus(int a,int b){
return a+b;
}
}
複製代碼
作者:
王儀華
時間:
2022-5-20 20:23
public class Ch01 {
public static void main(String[] args){
int a=1, b=5;
plus s = new plus();
System.out.print(s.p(a,b));
}
}
class plus{
plus(){
}
static int p(int a, int b) {
return a+b;
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2