答案

赵文浚  •  10个月前


#include<bits/stdc++.h> 
using namespace std;  
int main(){  
char a[1000];  
char b[1000];  
cin >> a >> b;  
int n = strcmp(a,b);  
if(n==0) 
{  
 cout << "yes";  

else 
{  
 cout << "no";  
}  
return 0;  


评论: