class tvShow {
public:
string name;
string dayofweek;
int lengthInMin;
double rating;
}
write a sequence of statements that will do the following:
If the show is scheduled for wednesday and the rating is above 20, print We Have a New Hit Show.
if this is not true subtract 5 from the number of minutes.
if ( ..... == "wednesday" && .... == 20.0)
cout << "We Have a New Hit Show";
else
..... = ..... - 5;
I don't know what to put in where you see the dots.