Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
129544 | 王梓轩 | 字符串长度判断 | C++ | Accepted | 1 MS | 276 KB | 239 | 2025-08-28 10:19:47 |
#include<iostream> #include<cstring> using namespace std; int main() { char a[178],b[178]; cin>>a>>b; int len7=strlen(a); int len8=strlen(b); if(len7==len8) { cout<<"yes"; } else { cout<<"no"; } return 0; }