| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 75673 | sh25_zhuwy | 字符串比较 | C++ | 解答错误 | 0 MS | 252 KB | 276 | 2025-12-09 13:13:55 |
#include<bits/stdc++.h> using namespace std; int main() { string x,y,z,max; cin>>x>>y>>z; int a=x.length(),b=y.length(),c=z.length(),m=max.length(); if(a<b) { max=y; } else { max=x; } if(m<c) { max=z; } cout<<max; return 0; }