第一题 简易做法.
请在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);
}
}