49 条题解
信息
- ID
- 2133
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 2
- 标签
- 递交数
- 1124
- 已通过
- 521
- 上传者
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a>b and a>c) { cout<<a;} if(b>a and b>c) { cout<<b;} if(c>b and c>a) { cout<<c;} if(ab and bc) { cout<<c;} return 0; }