论坛的帖子怎么删除:C#代码之plane

来源:百度文库 编辑:九乡新闻网 时间:2024/10/05 22:57:55
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;namespace plane
{
    class Program
    {
        static void Main(string[] args)
        {
            double yuanPrize = 4000;//机票的原价
            int Month = DateTime.Now.Month;//获取当前的月份            if (Month >= 5 && Month <= 10)
            {
                Console.WriteLine("请选择机舱类型:1表示头等舱,2表示经济舱");
                string select = Console.ReadLine();
                if (select == "1")
                {
                    Console.WriteLine("你的机票价格为:{0}", yuanPrize * 0.9);
                }
                else if (select == "2")
                {
                    Console.WriteLine("你的机票价格为:{0}", yuanPrize * 0.75);
                }
                else
                {
                    Console.WriteLine("输入非法!");
                }
            }
            else
            {
                Console.WriteLine("请选择机舱类型:1表示头等舱,2表示经济舱");
                string select = Console.ReadLine();
                if (select == "1")
                    Console.WriteLine("你的机票价格为:{0}", yuanPrize * 0.6);
                else if (select == "2")
                    Console.WriteLine("你的机票价格为:{0}", yuanPrize * 0.3);
                else
                {
                    Console.WriteLine("输入非法!");
                }
            }  
        }
    }
}