第一題 簡易做法.
請在run時,輸入java temp x y z w即可
不過 你這公式中 根本沒用到z...
複製程式
class temp {
public static void main(String[] args) {
int x = Integer.parseInt(args[0]);
int y = Integer.parseInt(args[1]);
int z = Integer.parseInt(args[2]);
int w = Integer.parseInt(args[3]);
System.out.println((x+y*x)%w);
}
}
第二題 也是簡易做法
請在run時,輸入java temp 1000000即可
複製程式
class temp {
public static void main(String[] args) {
double x = Integer.parseInt(args[0]);
for(int i=1;i<=2;i++){
x+=x*0.03;
}
System.out.println(x);
}
}