Write an if-else statement to describe an object. print balloon if isballoon is true and isred is false. print red balloon if isballoon and isred are both true. print not a balloon otherwise. end with newline.

Respuesta :

Try this:
#include <iostream>
using yourname std;
int main() bool isRed = false;
bool isBalloon = false;
//Solution below
return 0; }