| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 134083 | 田祥江 | 字符串长度判断 | C++ | Wrong Answer | 1 MS | 264 KB | 190 | 2025-10-25 16:24:39 |
#include<bits/stdc++.h> char a[1000]; using namespace std; int main(){ int c,b; cin>>c>>b; if(c>b&&c<b){ cout<<"no"; } else{ cout<<"yes"; } return 0; }
------Input------
wlglqarn lgmmi
------Answer-----
no
------Your output-----
yes