结构体题解 dark♂ 不必
2023-12-12 19:34:53
发布于:北京
18阅读
0回复
0点赞
执行用时:ms
内存消耗:MB
击败了的用户
击败了的用户
#include<iostream>
#include<string>
using namespace std;
int n;
bool empty=true;
string myem,name,code,em;
int main(){
cin>>myem>>n;
for(int i=1;i<=n;i++){
cin>>name>>code>>em;
if(myem==em){
empty=false;
cout<<name<<' ';
for(int j=0;j<code.size();j++){
if(code[j]>='a'&&code[j]<='z') code[j]=code[j]-'a'+'A';
else if(code[j]>='A'&&code[j]<='Z') code[j]=code[j]-'A'+'a';
cout<<code[j];
}
cout<<endl;
}
}
if(empty) cout<<"empty";
return 0;
}
这里空空如也
有帮助,赞一个