Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
117054 毛靖平 字符串长度判断 C++ Wrong Answer 0 MS 276 KB 323 2025-04-13 14:50:10

Tests(1/10):


Code:

#include<iostream> using namespace std; int main(){ char a[151],b[151]; cin>>a>>b; int n=0,v=0; for(int i=0;a[i]!='\0';i++){ n++; } for(int i=0;b[i]!='\0';i++){ v++; } if(a!=b){ cout<<"no"; } else{ cout<<"yes"; } return 0; }


Run Info:

------Input------
qsoeaidcsj uwbhmfcfjz
------Answer-----
yes
------Your output-----
no