Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
88285 陈昊然 字符串长度判断 C++ Accepted 1 MS 268 KB 229 2024-08-19 10:31:56

Tests(10/10):


Code:

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