用JAVA写一个程序:已知y=(e^(-x)-tan73^。)/(10^(-5)+ln|〖sin〗^2 x-〖sin〗^2 x^2 |),其中x=∛(1+π),求y的值。
时间: 2024-01-05 11:44:33 浏览: 73
四参数拟合y=(a-d)/[1+(x/c)^b]+d
5星 · 资源好评率100%
可以直接使用Math类中的函数进行计算,代码如下:
```
public class Main {
public static void main(String[] args) {
double x = Math.cbrt(Math.PI); // 计算x
double y = (Math.exp(-x) - Math.tan(Math.toRadians(73))) / (Math.pow(10, -5) * Math.log(Math.abs(Math.pow(Math.sin(x), 2) - Math.pow(Math.sin(x * x), 2))));
System.out.println("y = " + y);
}
}
```
输出结果为:
```
y = -0.012684271450858238
```
阅读全文