Menu
×
×
Correct!
Exercise:Fill in the missing parts to print the values
bool isCodingFun = true;
bool isFishTasty = false;
cout << isCodingFun;
cout << isFishTasty;
Not CorrectClick here to try again. Correct!Next ❯isCodingFun = true; isFishTasty = false; cout << ; cout << ; |