Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2693 吴奕希 字符串相等判断 C++ Accepted 0 MS 264 KB 218 2024-01-20 17:45:36

Tests(10/10):


Code:

# include<iostream> # include<cstring> using namespace std; int main(){ char s1[1000], s2[1000]; cin>>s1>>s2; if(!strcmp(s1,s2)){ cout<<"yes"; } else{ cout<<"no"; } }