题解
2023-08-07 17:12:39
发布于:浙江
9阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
string rna; //水题!!!
cin >> rna;
for (int i = 0 ; i < rna.size() ; i++){
if (rna[i] == 'A')
cout << "T";
else if (rna[i] == 'T')
cout << "A";
else if (rna[i] == 'C')
cout << "G";
else
cout << "C";
}
return 0;
}
这里空空如也
有帮助,赞一个