38.The number of people in the world totals about 6 billion and large quantities of waste each year. 查看更多

 

题目列表(包括答案和解析)

以下是用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)

查看答案和解析>>

以下是用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)

查看答案和解析>>


同步练习册答案