Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
112272 | 黎瑾萱 | 字符串长度判断 | C++ | Wrong Answer | 1 MS | 280 KB | 250 | 2025-03-09 10:28:04 |
#include <bits/stdc++.h> using namespace std; int main() { string a,b; getline(cin,a); getline(cin,b); int len = a.size(); int loo = b.size(); if(len==loo){ cout<<"yes"; } else{ cout<<"no"; } return 0; }
------Input------
qsoeaidcsj uwbhmfcfjz
------Answer-----
yes
------Your output-----
no