| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 156916 | 赵奕杰 | 字符串长度判断 | C++ | Accepted | 1 MS | 276 KB | 192 | 2026-07-11 14:26:51 |
#include<bits/stdc++.h> using namespace std; char a[100],b[100]; int main(){ cin>>a>>b; int len=strlen(a),len2=strlen(b); if(len==len2) cout<<"yes"; else cout<<"no"; return 0; }