using namespace std;
int main()
{
int x, y, z, t;
cin >> x >> y >> z;
if (x > y) {
t = x;
x = y;
y = t;
}
if (x > z) {
x = z;
z = t;
if (y > z) {
t = y;
y = z;
cout << x;
return 0;
1)题目?
2)头文件声明?(#include<iostream>)
3)下面代码没太大问题(?
4)没过的话再回头仔细看题目要求输出什么&格式什么等等等(?