Re: [問題] 樂透的程式
// 這是一個 method 把 b 值 assign 給 ball 這個 data member
public void setball(int b)
{
ball=b;
}
public void roll()
{
// 產生一個亂數值,並處理其大小範圍
double di=49*Math.random()+1;
double num1=Math.floor(di);
// 將產生出來的亂數值強制轉換成 int type 然後交給 setball
// 把 ball 值設定為 num1 的 int type
setball((int)num1);
}
--
Over The Top !
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 68.167.191.37
討論串 (同標題文章)
java 近期熱門文章
PTT數位生活區 即時熱門文章