我正在尝试编写一个程序,允许用户输入两个不同程度的多项式,我相信我的while循环不正确,我无法弄清楚如何让用户输入第二个多项式。
{
int i, coef, x, deg;
double total=0.0;
Scanner sc= new Scanner(System.in);
System.out.println("Enter Degree");
deg=sc.nextInt();
System.out.println("Enter x");
x=sc.nextInt();
do
{
for (i=0; i<=deg; i++)
{
System.out.println("Enter Coefficent for " +i);
coef=sc.nextInt();
total=total+coef*Math.pow(x,i);
}
}
while ( deg != 0);