標題:
[作業] static 關鍵字 (二)
[打印本頁]
作者:
tonyh
時間:
2015-3-7 17:43
標題:
[作業] static 關鍵字 (二)
本帖最後由 tonyh 於 2015-3-14 16:47 編輯
自定MyMath類別, 類別中包含三個方法: pow() , minus() , 與 plus()
利用這個自定類別的方法, 完成指數, 減法, 與加法運算.
譬如當呼叫MyMath.pow(2,5)時, 能回傳32.
參考執行畫面如下:
[attach]1166[/attach]
public class ch64
{
public static void main(String[] args)
{
int x=2, y=5;
System.out.println(x+"的"+y+"次方為"+MyMath.pow(x,y));
System.out.println(x+"減去"+y+"等於"+MyMath.minus(x,y));
System.out.println(x+"加上"+y+"等於"+MyMath.plus(x,y));
}
}
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;
}
}
複製代碼
作者:
劉得恩
時間:
2015-3-7 17:55
此帖僅作者可見
作者:
張峻瑋
時間:
2015-3-7 20:50
此帖僅作者可見
作者:
李允軒
時間:
2015-3-8 19:44
此帖僅作者可見
作者:
林宇翔
時間:
2015-3-14 12:19
此帖僅作者可見
作者:
周雍程
時間:
2015-3-14 16:49
此帖僅作者可見
作者:
張彥承
時間:
2015-3-14 16:56
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2