| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134085 | 鲁博睿 | 字符串长度判断 | C++ | Accepted | 1 MS | 272 KB | 262 | 2025-10-25 16:26:56 |
#include <bits/stdc++.h> using namespace std; char str1[1000]; char str2[1000]; int main() { cin>>str1; int len1 = strlen(str1); cin>>str2; int len2 = strlen(str2); if(len1==len2){ cout<<"yes"; } else{ cout<<"no"; } return 0; }