Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
124766 田子熙 字符串长度判断 C++ Accepted 2 MS 272 KB 255 2025-07-12 14:42:57

Tests(10/10):


Code:

#include<bits/stdc++.h>//<csterint> using namespace std; char arr[155]; char arr2[155]; int main(){ cin>>arr; cin>>arr2; int len=strlen(arr); int len2=strlen(arr2); if(len==len2){ cout<<"yes"; }else{ cout<<"no"; } return 0; }