| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 155495 | 张蔚林 | 字符串相等判断 | C++ | Accepted | 1 MS | 276 KB | 201 | 2026-06-07 12:25:08 |
#include<bits/stdc++.h> using namespace std; int main(){ char z[1001]={},s[1001]={}; int l; cin>>z>>s; l=strcmp(z,s); if(l==0){ cout<<"yes"; } else{ cout<<"no"; } return 0; }