题解
2024-11-23 11:17:56
发布于:浙江
0阅读
0回复
0点赞
#include<iostream>
#include<string>
using namespace std;
int main(){
string a,b;
cin>>a;
for(int i=0;i<a.size();i++){
if(a[i]=='A'){
b+='T';
}else if(a[i]=='T'){
b+='A';
}else if(a[i]=='G'){
b+='C';
}else if(a[i]=='C'){
b+='G';
}
}
cout<<b;
return 0;
}
这里空空如也
有帮助,赞一个