Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2686 吴奕希 字符串长度判断 C++ Wrong Answer 0 MS 264 KB 239 2024-01-20 17:25:11

Tests(0/10):


Code:

# include<iostream> # include<cstring> using namespace std; int main(){ char s1[151], s2[151]; cin>>s1>>s2; if(string(s1)==string(s2)){ cout<<"yes"; } else{ cout<<"no"; } return 0; }


Run Info:

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