標題:
[作業] static 關鍵字 (二)
[打印本頁]
作者:
葉桔良
時間:
2023-5-6 13:24
標題:
[作業] static 關鍵字 (二)
本帖最後由 葉桔良 於 2023-5-13 16:33 編輯
自定MyMath類別,類別中包含三個方法:pow()、minus() 與 plus()。
利用這些方法,完成指數、減法與加法運算。
譬如當呼叫 MyMath.pow(2,5) 時,能回傳32。
參考執行畫面如下:
public class Ch55 {
public static void main(String[] args) {
System.out.println("2的5次方為"+MyMath.pow(2, 5));
System.out.println("2減去5等於"+MyMath.minus(2, 5));
System.out.println("2加上5等於"+MyMath.plus(2, 5));
}
}
class MyMath
{
static int pow(int x, int y)
{
int res=1;
for(int i=1; i<=y; i++)
res*=x;
return res;
}
static int minus(int x, int y)
{
return x-y;
}
static int plus(int x, int y)
{
return x+y;
}
}
複製代碼
作者:
石皓云
時間:
2023-5-7 11:37
此帖僅作者可見
作者:
侯宣仲
時間:
2023-5-10 21:37
此帖僅作者可見
作者:
侯宣任
時間:
2023-5-10 21:53
此帖僅作者可見
作者:
張駿霖
時間:
2023-5-13 09:36
此帖僅作者可見
作者:
錢冠叡
時間:
2023-5-13 10:07
此帖僅作者可見
作者:
許浩浩
時間:
2023-5-13 15:25
此帖僅作者可見
作者:
柏霖
時間:
2023-5-13 16:15
此帖僅作者可見
作者:
孫文康
時間:
2023-5-13 16:22
此帖僅作者可見
作者:
謝閔丞
時間:
2023-5-13 16:41
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2