INPUTPlease input a,b,c=”;a,b,c

d=b*b4*a*c

p=b/(2*a)

IF d=0 THEN

x1=pq

x2=pq

IF x1=x2 THEN

PRINTOne real root:”;x1

ELSE

PRINTTwo real rootsx1”;x1,“and x2”;x2

END IF

ELSE

PRINTNO real root.”

END IF

END

上述是________的程序.

【注】

答案:略
解析:

一元二次方程的求根公式


練習(xí)冊系列答案
相關(guān)習(xí)題

科目:高中數(shù)學(xué) 來源: 題型:

將下列程序用DO-LOOP UNTIL循環(huán)語句重新編寫出來,并說明是解決的什么數(shù)學(xué)問題.
INPUT n
s=0
i=0
WHILE i<=n
s=s+i/(i+2)
i=i+1
WEND
PRINT s
END.

查看答案和解析>>

科目:高中數(shù)學(xué) 來源:數(shù)學(xué)教研室 題型:022

INPUT“Please input a,b,c=”;a,b,c

d=b*b-4*a*c

p=-b/(2*a)

IF d>=0 THEN

x1=p+q

x2=p-q

IF x1=x2 THEN

PRINT“One real root:”;x1

ELSE

PRINT“Two real roots:x1”;x1,“and x2”;x2

END IF

ELSE

PRINT“NO real root.”

END IF

END

上述是________的程序.

【注】

查看答案和解析>>

科目:高中數(shù)學(xué) 來源:數(shù)學(xué)教研室 題型:022

以下是用Scilab編寫的程序,輸出a,b的含義是________________.

a=input(“please give the first number”)

b=input(“please give the second number”)

while a<>b

   if a>=b

    a=a-b;

   else

    b=b-a;

  end

end

print(%io(2),a,b)

查看答案和解析>>

科目:高中數(shù)學(xué) 來源: 題型:022

以下是用Scilab編寫的程序,輸出ab的含義是________________

a=input(please give the first number)

b=input(please give the second number)

while a<>b

   if a=b

    a=ab;

   else

    b=ba

  end

end

print(io(2),ab)

查看答案和解析>>

同步練習(xí)冊答案