Run ID:155522
提交时间: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; }