我收到很多错误,类似于... std::basic_ostream<_CharT, _Traits> 等...这段代码有什么问题?另外,我避免使用字符串是有原因的,我必须使用字符。
#include <iostream>
#include <cassert>
using namespace std;
void x(char y) {
char z = toupper(y);
if (z == 'A')
cout << 'G' << 'C' << 'T' << '\n' << 'G' << 'C' << 'C' << '\n' << 'G' << 'C' << 'A' << '\n' << 'G' << 'C' << 'G' << endl;
else if (z == 'R')
cout << 'C' << 'G' << 'T' << '\n' << 'C' << 'G' << 'C' << '\n' << 'C' << 'G' << 'A' << '\n' << 'C' << 'G' << 'G' << '\n' << 'A' << 'G' << 'A' << '\n' << 'A' << 'G' << 'G' << endl;
else
cout << '?' << endl;
}
int main()
{
cout << x('A') << endl;
cout << x('r') << endl;
cout << x('m') << endl;
return 0;
}