Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4141 | 李宇轩 | 字符串长度判断 | C++ | Wrong Answer | 0 MS | 272 KB | 261 | 2024-08-04 15:11:33 |
#include<iostream> #include<cstring> using namespace std; int main(){ char s1[1000],s2[1000]; int num1,num2; cin>>s1>>s2; num1=strlen(s1); num2=strlen(s2); if(num1==num2){ cout<<"Yes"<<endl; }else{ cout<<"No"<<endl; } return 0; }
------Input------
qsoeaidcsj uwbhmfcfjz
------Answer-----
yes
------Your output-----
Yes