a=3
b=2
c=a
b=c
print(“a=”,a)
print(“b=”,b)
该程序的功能是交换变量a、b的值,该程序段划线处应填入的代码为:
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的值为。
n=input(“请输入一个实数:”)
n2= math. floor(float(n))
print(n2)
该程序段划线处应填入的代码为。