Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
124769 | 陈华仁星 | 字符串长度判断 | C++ | Accepted | 1 MS | 200 KB | 232 | 2025-07-12 14:44:41 |
#include <cstdio> #include <cstring> using namespace std; char a[150],b[150]; int main() { scanf("%s%s",a,b); int lena=strlen(a); int lenb=strlen(b); if(lena==lenb) printf("yes"); else printf("no"); return 0; }