Question

Write in C: Assume that an int variable age has been declared and already given a...

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.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

#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\n");
printf("T: whole trout, long rice, brussel sprouts\n");
printf("B: cheddar cheeseburger, steak fries, cole slaw\n");
printf("Please enter your choice\n");
scanf("%c",&ch);
  
switch(ch){
case 'S':
if(age <=21)
{
printf("Vegetable Juice is Recommended for you\n");
}
else{
printf("cabernet is recommeded for you\n");
}
break;
case 'T':
if(age <=21)
{
printf("cranberry juice is Recommended for you\n");
}
else{
printf("chardonnay is recommeded for you\n");
}
break;
case 'B':
if(age <=21)
{
printf("Soda is Recommended for you\n");
}
else{
printf("IPA is recommeded for you\n");
}
break;
default:
printf("Invalid menu selection");
}

  
return 0;
}

Add a comment
Know the answer?
Add Answer to:
Write in C: Assume that an int variable age has been declared and already given a...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT