Assume that an int variable age has been declared and already given a value and assume that a char variable choice has been declared as well. Assume further that the user has just been presented with the following menu: S: hangar steak, red potatoes, asparagus T: whole trout, long rice, brussel sprouts B: cheddar cheeseburger, steak fries, cole slaw (Yes, this menu really IS a menu!) Write some code that reads a single character (S or T or B) into choice . Then the code prints out a recommended accompanying drink as follows: If the value of age is 21 or lower, the recommendation is “vegetable juice” for steak, “cranberry juice” for trout, and “soda” for the burger. Otherwise, the recommendations are “cabernet”, “chardonnay”, and “IPA” for steak, trout, and burger respectively. Regardless of the value of age , your code should print “invalid menu selection” if the character read into choice was not S or T or B.

LANGUAGE: C++

CHALLENGE:

Assume that an int variable age has been declared and already given a value and assume that a char variable choice has been declared as well. Assume further that the user has just been presented with the following menu: S: hangar steak, red potatoes, asparagus T: whole trout, long rice, brussel sprouts B: cheddar cheeseburger, steak fries, cole slaw (Yes, this menu really IS a menu!) Write some code that reads a single character (S or T or B) into choice . Then the code prints out a recommended accompanying drink as follows: If the value of age is 21 or lower, the recommendation is “vegetable juice” for steak, “cranberry juice” for trout, and “soda” for the burger. Otherwise, the recommendations are “cabernet”, “chardonnay”, and “IPA” for steak, trout, and burger respectively. Regardless of the value of age , your code should print “invalid menu selection” if the character read into choice was not S or T or B.

SOLUTION:


cin >> choice;

if(age < 22){
	   switch(choice){
		      case 'S':
			         cout << "vegetable juice";
			         break;
		      case 'T':
			         cout << "cranberry juice";
			         break;
		      case 'B':
			         cout << "soda";
			         break;
		      default:
		         	cout << "invalid menu selection";
   	}
}else{
   switch(choice){
      		case 'S':
         			cout << "cabernet";
			         break;
		      case 'T':
		         	cout << "chardonnay";
			         break;
		      case 'B':
			         cout << "IPA";
		         	break;
		      default:
			         cout << "invalid menu selection";
   	}
}