Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
157541 王润中 字符串长度判断 C++ Wrong Answer 1 MS 268 KB 238 2026-07-29 15:18:39

Tests(1/10):


Code:

#include<iostream> #include<cstring> #include<cmath> using namespace std; int main(){ char a[155],b[155]; gets(a); gets(b); int as=strlen(a); int bs=strlen(b); if(as==bs){ cout<<"yes"; } else{ cout<<"no"; } }


Run Info:

------Input------
qsoeaidcsj uwbhmfcfjz
------Answer-----
yes
------Your output-----
no