def func(): try: n1 = int(input('请输入第一个整数:')) n2 = int(input('请输入第二个整数:')) print(n1 + n2) except: print('必须输入整数!!!') ...
確定! 回上一頁