您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要介绍C#如何实现一个控制台的点餐系统,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
具体内容如下
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 控制台操作尝试 { class Program { static void Main(string[] args) { int price = 0; Console.WriteLine("欢迎来吃饭"); Console.WriteLine("==================================================================="); Console.WriteLine("1.糖醋里脊 24元"); Console.WriteLine("2 红烧茄子 14元"); Console.WriteLine("3.千页豆腐 18元"); Console.WriteLine("4.蚂蚁上树 20元"); Console.WriteLine("5.红烧猪蹄 36元"); Console.WriteLine("6.宫保鸡丁 32元"); Console.WriteLine("==================================================================="); Console.WriteLine("请按菜品序号点餐,0号键结算"); Console.WriteLine("==================================================================="); while (true) { int index = int.Parse(Console.ReadLine()); if (index==1) { Console.WriteLine("您点的是糖醋里脊 24元"); price += 24; } if (index == 2) { Console.WriteLine("您点的是红烧茄子 14元"); price += 14; } if (index ==3) { Console.WriteLine("您点的是千页豆腐 18元"); price += 18; } if (index == 4) { Console.WriteLine("您点的是蚂蚁上树 20元"); price += 20; } if (index == 5) { Console.WriteLine("您点的是红烧猪蹄 36元"); price += 36; } if (index == 6) { Console.WriteLine("您点的是宫保鸡丁 32元"); price += 32; } if (index ==0) { Console.WriteLine("您总共消费{0}元",price); } } //Console.ReadLine(); } } }
效果图:
C#是一个简单、通用、面向对象的编程语言,它由微软Microsoft开发,继承了C和C++强大功能,并且去掉了一些它们的复杂特性,C#综合了VB简单的可视化操作和C++的高运行效率,以其强大的操作能力、优雅的语法风格、创新的语言特性和便捷的面向组件编程从而成为.NET开发的首选语言,但它不适用于编写时间急迫或性能非常高的代码,因为C#缺乏性能极高的应用程序所需要的关键功能。
以上是“C#如何实现一个控制台的点餐系统”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。