不是,为嘛93

tctm114 2024-04-18 21:42:20 16

#include using namespace std; int main() { int a, b, c; cin >> a >> b >> c; if (a > b && a > c) { cout << a; } else if (b > a && b > c) { cout << b; } else { cout << c; } }

{{ vote && vote.total.up }}

共 1 条回复

root 站长

如果两个数字相同呢,比如 2 2 1,你思考一下