[C#小程序]命令行小程序之你要买大杯小杯还是中杯?
实现效果:
屏幕出现提示:1、小杯3元;2、中杯4元;3、大杯5元,请输入对应数字选择...
用户输入数字则提示对应的结果:小杯,请支付3元;输入错误则默认中杯
下面是源代码:
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespaceConsoleManyHellos{classProgram{staticvoidMain(string[]args){Console.WriteLine("1=小杯3块,2=中杯4块,3=大杯5块");Console.Write("你的选择?");strings=Console.ReadLine();intn=int.Parse(s);switch(n){case1:Console.WriteLine("小杯,请支付3块钱;");break;case2:Console.WriteLine("中杯,请支付4块钱;");break;case3:Console.WriteLine("大杯,请支付5块钱;");break;default:Console.WriteLine("默认中杯,请付款4块钱;");break;}Console.WriteLine("谢谢使用,祝您用餐愉快!");}}}
命令行效果截图:
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。