Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
153637 李昱龙 字符串长度判断 C++ Accepted 2 MS 276 KB 236 2026-05-23 15:19:58

Tests(10/10):


Code:

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