它总是出现 0 和 0,我只是想计算用户给出的字符串中的 Gs 和 Cs(以及非 Gs 和 Cs)。我知道这是一个初学者问题,对此感到抱歉:(
#include <iostream>
#include <string>
using namespace std;
int main()
{
int x = 0
int y = 0
string s;
cout << "Enter a sequence" << endl;
cin >> s;
for (int i = 0; i > 100; i++)
if (s[i] == 'g' || s[i] == 'c')
x += 1;
else
y += 1;
cout << x << endl;
cout << y << endl;
}