作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
public static void main(String[] args) {
double x,sum;
double[] series = new double[30];
Scanner input = new Scanner(System.in);
System.out.println("enter a num: ");
x = input.nextInt();
sum = x;
for (int i = 3; i <= 27 ; i+=2){
int a = 0;
a++;
for (int j = 1 ; j <= i ; j++ ){
series[a] = x/j;
System.out.println(series[a] );
}
}
//if (i == 27){
boolean add = true;
for (int b = 1; b <= 27 ; b++ ){
if (add == true){
sum -= series[b];
}
else {
sum += series[b];
}
}
}
}
所以我想做的是将 (x/j) 的结果存储在我的“系列”数组中......?这意味着 x^(i)/i!事情......我是否误解了如何计算 Sin(X) 的方法?
最佳答案
关于java - 如何用数组计算Sin(X),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46992032/
我是一名优秀的程序员,十分优秀!