溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C#如何實現(xiàn)一個控制臺的點餐系統(tǒng)

發(fā)布時間:2021-05-17 09:41:22 來源:億速云 閱讀:342 作者:小新 欄目:編程語言

這篇文章主要介紹C#如何實現(xiàn)一個控制臺的點餐系統(tǒng),文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

具體內(nèi)容如下

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號鍵結(jié)算");
      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#如何實現(xiàn)一個控制臺的點餐系統(tǒng)

C#是什么

C#是一個簡單、通用、面向?qū)ο蟮木幊陶Z言,它由微軟Microsoft開發(fā),繼承了C和C++強(qiáng)大功能,并且去掉了一些它們的復(fù)雜特性,C#綜合了VB簡單的可視化操作和C++的高運行效率,以其強(qiáng)大的操作能力、優(yōu)雅的語法風(fēng)格、創(chuàng)新的語言特性和便捷的面向組件編程從而成為.NET開發(fā)的首選語言,但它不適用于編寫時間急迫或性能非常高的代碼,因為C#缺乏性能極高的應(yīng)用程序所需要的關(guān)鍵功能。

以上是“C#如何實現(xiàn)一個控制臺的點餐系統(tǒng)”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI