Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155520 杨金卓 字符串长度判断 C++ Accepted 1 MS 272 KB 232 2026-06-07 14:57:55

Tests(10/10):


Code:

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