Type in the code to enter a value and store in the variable x, then test if it's greater than 20, print "x is big" on the screen, if x is less than 10, print "x is small". int x;

cin >> x;

if (x 20) {

cout << "x is big" << endl;

}

if (x < ) {

cout << "x is small" << endl;

}

Vitalik1994 Vitalik1994    3   05.12.2021 14:01    5

Другие вопросы по теме Алгебра