Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134088 田祥江 字符串长度判断 C++ Accepted 2 MS 280 KB 232 2025-10-25 16:28:00

Tests(10/10):


Code:

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