「Java」「Inner Class」 Chapter4 Question17

有一台光陽機車,從A點到B點,總長度80公里。共花了10小時。請問機車的每小時速率多少?

Given:
class Bike{
 int totalKm;
 Bike(int km){
  this.totalKm=km;
 }
 public void Time(int hour) {//花費的時間
  int hr = hour;
  class kymco{
   int velocity=0;
   public void speedup() {
    velocity = totalKm/hr;
    System.out.println("(每小時多少公里)速率:"+velocity+"km/hr"); 
   }
  }
  new kymco().speedup();
 }
}
public class Test5 {
 public static void main(String[] args) {
  Bike bk = new Bike(80);//總長80公里
  bk.Time(10);//花費10小時
 }
}

Answer:
編譯成功,每小時速率 8 公里

留言

這個網誌中的熱門文章

[Excel]國曆轉農曆VBA

「CSS」「div區塊介紹」 三欄式網頁排版設計

「生活」眉毛觀人