#include <bits/stdc++.h> using namespace std; int main() { float a, b, c, temp; cin >> a >> b >> c; if (a > b) temp = a; a = b; b = temp;
if (a > c) temp = a; a = c; c = temp; if (b > c) temp = b; b = c; c = temp; return 0;
}
什么意思??????
你的输出嘞?
共 2 条回复
什么意思??????
你的输出嘞?