Run ID:138267

提交时间:2025-11-24 16:09:34

Online Judge C++题库系统 OJ 首页 问题列表 状态 排行榜 余秋烨 首页 问题 08比较三个数的大小 答案 孔声豪 • 2天前 #include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c; if(a>b) { d=a; } else { d=b; } if(d>c){ cout<<d<<endl; } else{ cout<<c<<endl; } return 0; } 评论: ztx • 3秒前 © C++题库系统 OJ 2025