键盘上输入2个int型数据,比较其大小,并输出其中较小的数。
时间: 2023-05-10 09:55:23 浏览: 216
在键盘输入数据
以下是可以实现该功能的 C++ 代码:
```c++
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
if (a < b) {
cout << a << endl;
} else {
cout << b << endl;
}
return 0;
}
```
这段代码可以读取键盘上输入的两个整数,比较它们的大小,并输出其中较小的数。
阅读全文