Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
124776 范恒恺 字符串长度判断 C++ Accepted 1 MS 272 KB 239 2025-07-12 14:52:02

Tests(10/10):


Code:

#include<iostream> #include<cstring> char arr[150]; char brr[150]; using namespace std; int main(){ cin>>arr; cin>>brr; int sb=strlen(arr); int bt=strlen(brr); if(sb==bt){ cout<<"yes"; }else{ cout<<"no"; } }