| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 121323 | 任艺宸 | 字符串相等判断 | C++ | Wrong Answer | 0 MS | 284 KB | 424 | 2025-06-07 11:40:17 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ char a[1000],b[1000]; int n=strcmp(a,b); cin>>a>>b; if(n==0){ cout<<"yes"<<endl; }else{ cout<<"no"<<endl; } return 0; }
------Input------
K4p162FM6v64lze81Ib9bau8kSPE86E6GQWofvjJ4SP8i00dr4EiES410zq6gxkeDd K4p162FM6v64lze81Ib9bau8kSPE86E6GQWofvjJ4SP8i00dr4EiES410zq0gxkeDd
------Answer-----
no
------Your output-----
yes