Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
156834 杜禹轩 字符串长度判断 C++ Wrong Answer 2 MS 272 KB 254 2026-07-11 11:55:35

Tests(0/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int s1=0,s2=0; string a,b; cin>>a>>b; while (a[s1]!='\0'){ s1++; } while (a[s2]!='\0'){ s2++; } if(s1==s2){ cout<<"yes"; }else{ cout<<"no"; } return 0; }


Run Info:

------Input------
wlglqarn lgmmi
------Answer-----
no
------Your output-----
yes