大神教教這題怎麼寫?這個我不太會寫,感覺沒有思路啊⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯⋯
public static double foo(int x) {
if (x <= 3500) return 0;
if (x <= 5000) return (x - 3500) * 0.03;
if (x <= 8000) return (x - 5000) * 0.1 + 1500 * 0.03;
return (x - 8000) * 0.2 + 3000 * 0.1 + 1500 * 0.03;
}
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
int x = in.nextInt();
System.out.println(foo(x));
}