請撰寫一個計算計程車車費的程式,可以輸入里程N公尺,計算出車費。計程車起跳是70元,之後每300公尺加5元,不滿300公尺以300公尺計算。
測試過可用
import java.io.*;
public class HowMuch {
public static void main(String[] argv)
throws IOException {
System.out.println("請輸入公尺數");
BufferedReader br = new BufferedReader(
new InputStreamReader(System.in));
String str = br.readLine();
int S2I = Integer.parseInt(str);
int price=0;
if ((S2I % 300) != 0) price = ((S2I / 300) + 1) * 5 + 70;
if ((S2I % 300) == 0) price = ((S2I / 300) ) * 5 + 70;
System.out.println(price);
}
}
需不需要教你怎麼安裝JDK呢??
需不需要教你怎麼開機??