Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
156988 邓弘锐 字符串相等判断 C++ Accepted 1 MS 284 KB 221 2026-07-12 14:05:06

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; char s1[10086]; char s2[10086]; int main(){ cin>>s1>>s2; int f=strcmp(s1,s2); if(f==0){ cout<<"yes"; return 0; } cout<<"no"; return 0; }