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