比较两个整数的大小的代码
时间: 2023-05-25 11:04:04 浏览: 89
以下是比较两个整数大小的Python代码:
```
a = int(input("Enter the first integer: "))
b = int(input("Enter the second integer: "))
if a > b:
print("{} is greater than {}".format(a, b))
elif a < b:
print("{} is less than {}".format(a, b))
else:
print("{} is equal to {}".format(a, b))
```
代码首先将用户输入的两个整数保存在变量`a`和`b`中。然后使用`if-elif-else`语句比较这两个整数,并根据它们的大小输出相应的比较结果。注意,这里使用了字符串格式化函数`format()`将输出语句中的变量插入到特定的位置。
阅读全文