| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 157342 | 曹奕晗 | 字符串长度判断 | C++ | Wrong Answer | 1 MS | 268 KB | 238 | 2026-07-22 19:19:40 |
#include<iostream> #include<cstring> using namespace std; int main() { char s[1000],c[1000]; gets(s); gets(c); int a=strlen(s); int b=strlen(c); if(a==b) { cout<<"yes"; } else { cout<<"no"; } return 0; }
------Input------
qsoeaidcsj uwbhmfcfjz
------Answer-----
yes
------Your output-----
no