①输入两个数x、y;
②将x的值赋给t,将y的值赋给x,将t的值赋给y;
③输出变量x、y的值
④结束。
该算法采用的描述方法属于( )
a=3
b=2
c=a
b=c
print(“a=”,a)
print(“b=”,b)
该程序的功能是交换变量a、b的值,该程序段划线处应填入的代码为:
score=int(input(“请输入分数:”))
if score>60:
score+=20
score+=10
print(score)
若程序运行后输入20,打印出的 score的值为。
a=6
b=18
c=26
if a>=b and a>=c:
max=a
elif b>=a and b>=c:
max=b
elif c>=a and c>=b:
max=c
print (max)
该程序段运行后,输出的max的值为。
s=0
for i in range(1,11,2):
s=s+i
print(s)
该程序段运行后,s的值为。
n=input(“请输入一个实数:”)
n2= math. floor(float(n))
print(n2)
该程序段划线处应填入的代码为。