Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146559 李折曦 字符串长度判断 C++ Accepted 1 MS 276 KB 219 2026-01-29 13:15:00

Tests(10/10):


Code:

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