Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128921 罗安博 字符串长度判断 C++ Accepted 1 MS 272 KB 214 2025-08-21 09:32:39

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; char a[1000]; char b[1000]; int main(){ cin>>a; cin>>b; int len =strlen(a); int c =strlen(b); if(len==c){ cout<<"yes"; }else{ cout<<"no"; } }