Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129486 Kevin 字符串长度判断 C++ Accepted 2 MS 276 KB 219 2025-08-26 16:07:00

Tests(10/10):


Code:

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