Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
157343 曹奕晗 字符串长度判断 C++ Accepted 1 MS 276 KB 229 2026-07-22 19:23:55

Tests(10/10):


Code:

#include<iostream> #include<cstring> using namespace std; int main() { char s[1000],c[1000]; cin>>s>>c; int a=strlen(s); int b=strlen(c); if(a==b) { cout<<"yes"; } else { cout<<"no"; } return 0; }