| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 153635 | 李昱龙 | 字符串长度判断 | C++ | Wrong Answer | 1 MS | 268 KB | 218 | 2026-05-23 15:17:14 |
#include<bits/stdc++.h> using namespace std; char a[1001],b[1001]; 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