| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 155522 | 肖之睿 | 字符串长度判断 | C++ | Wrong Answer | 1 MS | 264 KB | 287 | 2026-06-07 14:58:36 |
#include<iostream> #include<cstring> using namespace std; char a[1000]; char b[1000]; //sizeof(变量);计算某个变量的大小; int main(){ int c,d; cin>>c>>d; c=strlen(a); d=strlen(b); if(c==d){ cout<<"yes"; }else{ cout<<"no"; } return 0; }
------Input------
wlglqarn lgmmi
------Answer-----
no
------Your output-----
yes