| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 153636 | 李昱龙 | 字符串长度判断 | C++ | Wrong Answer | 1 MS | 272 KB | 216 | 2026-05-23 15:17:59 |
#include<bits/stdc++.h> using namespace std; char a[150],b[150]; int main(){ cin>>a; cin>>b; int h=strcmp(a,b); if(h==0){ cout<<"yes"; } else{ cout<<"no"; } return 0; }
------Input------
qsoeaidcsj uwbhmfcfjz
------Answer-----
yes
------Your output-----
no