#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;</b>
int main()
{
int us = 0, cs = 0;
char u, c;
srand(time(0));
while (cs < 3 && us < 3) {
cin >> u;
c = rand() % 2;
// u == c ? us++ : cs++;
if (u == c)
us++;
else
cs++;
cout << us << " : " << cs << endl;
}
// cout << (us == 3 ? "You win" : "You lose") << endl;
if (us == 3)
cout << "You win" << endl;
else
cout << "You lose" << endl;
c = rand() % 2;
у тебя тут ошибка, c у тебя равно символу с кодом либо 0 либо 1,if (u == c)
c = rand() % 2+'0';