我需要xgo + in 0.1 步骤直到它达到 1.0。
对于每一步我都需要函数的输出y=4x^2 + 5x -3
我的 Java 给我的输出不是我所期望的。
我尝试了一个 while 循环。我不得不说我是一个全新的初学者。
public class Main {
public static void main(String[] args)
{
double x = 0.1;
double x2 = Math.pow(x,2);
double y = 4*x2 + 5*x - 3;
double counter = 0.1;
while(counter <= 1.0)
{
System.out.print(y);
counter =+ 0.1;
x =+ 0.1;
}
}
}
输出只是一个长2.46-2.46-2.46-2.46-....-...-2.46
叮当猫咪
慕丝7291255
胡子哥哥
qq_遁去的一_1
蓝山帝景
相关分类