Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
157635 曹奕晗 字符串长度判断 C++ Accepted 1 MS 272 KB 220 2026-08-11 09:43:55

Tests(10/10):


Code:

#include<iostream> #include<cstring> using namespace std; int main() { char n[151],m[151]; cin>>n>>m; int a=strlen(n); int b=strlen(m); if(a==b) { cout<<"yes"; } else { cout<<"no"; } }