Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128922 周荣浩 字符串长度判断 C++ Accepted 1 MS 276 KB 217 2025-08-21 09:35:02

Tests(10/10):


Code:

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