求个小的c语言程序,求大神帮忙
设计一个简单水果超市管理平台编写一个主函数,显示如下菜单:
******* Welcome!*********
1.apple
2.banana
3.cherry
0.exit
Please select a fruit:
用户根据提示进行选择,程序根据用户输入显示相应的回答,
选择1时显示“these apples are very sweet”,
选择2时显示“these bananas are very sweet”,
选择3时显示“these cherries are very sweet”,
选择0时显示“bye bye”,
选择其它数字时显示“selection error!”
利用switch语句编程实现。