如何使用循环语句才能达到 “请输入第i个数”的效果
a=[] for i in range(10): a.append(int(input(f'请输入第{i+1}个数:\n'))) print(sorted(a)[-1])