Write in C: Assume that an int variable age has been declared and already given
ID: 3756380 • Letter: W
Question
Write in C:
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.
Explanation / Answer
#include <stdio.h>
int main()
{
int age=22; // change the value of age here to get different options
char ch;
printf("S: hangar steak, red potatoes, asparagus ");
printf("T: whole trout, long rice, brussel sprouts ");
printf("B: cheddar cheeseburger, steak fries, cole slaw ");
printf("Please enter your choice ");
scanf("%c",&ch);
switch(ch){
case 'S':
if(age <=21)
{
printf("Vegetable Juice is Recommended for you ");
}
else{
printf("cabernet is recommeded for you ");
}
break;
case 'T':
if(age <=21)
{
printf("cranberry juice is Recommended for you ");
}
else{
printf("chardonnay is recommeded for you ");
}
break;
case 'B':
if(age <=21)
{
printf("Soda is Recommended for you ");
}
else{
printf("IPA is recommeded for you ");
}
break;
default:
printf("Invalid menu selection");
}
return 0;
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.