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

Tests(10/10):


Code:

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