C#基本题目,帮忙做下啦

机票预定:输出实际机票价格.原价为4000元5-10月为旺季,头等舱打9折,经济舱打7.5折。其他时间为淡季,头等舱打6折,经济舱打3折。需要两次判断一次是月份,还有一次... 机票预定:输出实际机票价格.
原价为4000元
5-10月为旺季,头等舱打9折,经济舱打7.5折。
其他时间为淡季,头等舱打6折,经济舱打3折。
需要两次判断一次是月份,还有一次舱位,用if实现
是用Visual Studio 来写的 输出,读出用Console.WriteLine Console.ReadLine
展开
 我来答
帮宝适BB
推荐于2017-12-16 · 超过11用户采纳过TA的回答
知道答主
回答量:28
采纳率:0%
帮助的人:0
展开全部
class Program
{
static void Main(string[] args)
{
const double formerPrice = 4000;

Console.WriteLine("机票预定:\n请输入您预定的月份:");
int month = Convert.ToInt32(Console.ReadLine());
while(month<1 || month >12)
{
Console.WriteLine("数据出错,不符合要求!请重新输入您预定的月份:");
month = Convert.ToInt32(Console.ReadLine());
}

Console.WriteLine("请输入您预定的舱位类型,1为头等舱 2为经济舱:");
int type = Convert.ToInt32(Console.ReadLine());
while(type<1||type>2)
{
Console.WriteLine("数据出错,不符合要求!请输入您预定的舱位类型,1为头等舱 2为经济舱:");
type = Convert.ToInt32(Console.ReadLine());
}

Console.Write("原价:{0},",formerPrice);
if(month<5 && month<11)
{
if(type==1)
{
Console.WriteLine("9折:{0}",formerPrice*0.9);
}
else
{
Console.WriteLine("7.5折:{0}",formerPrice*0.75);
}
}
else
{
if(type==1)
{
Console.WriteLine("6折:{0}",formerPrice*0.6);
}
else
{
Console.WriteLine("3折:{0}",formerPrice*0.3);
}
}

Console.ReadLine();
}
等待游泳的鱼
2009-09-12
知道答主
回答量:12
采纳率:0%
帮助的人:9.5万
展开全部
double money = 4000; //机票价格
Console.Write("请输入您预定的月份:");
int month =int.Parse(Console.ReadLine());
Console.Write("请输入您预定的舱位:(经济舱/头等舱) ");
string str = Console.ReadLine(); //预定的月份
if (month>4&&month<11)
{
switch (str)
{
case "经济舱":
money = money * 7.5;
break;
case "头等舱":
money = money * 0.9;
break;
}
Console.WriteLine("原价为4000元,打完折为:"+money);
Console.ReadLine();
}
else
{
switch (str)
{
case "经济舱":
money = money * 0.3;
break;
case "头等舱":
money = money * 0.6;
break;
}
Console.WriteLine("原价为4000元,打完折为:" + money);
Console.ReadLine();
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
suzhansujue001
2009-09-12 · TA获得超过298个赞
知道答主
回答量:64
采纳率:0%
帮助的人:78.6万
展开全部
C#代码:
class Ticket
{
int intmonth;
int intcabin;

Ticket(int i, int j)
{
intmonth = i;
intcabin = j;
}
double Price()
{
double baseprice=4000.0;
double realprice;
if (intcabin == 1)
{
if ((intmonth >= 5) && (intmonth <= 10))
{
realprice = baseprice * 0.9;
}
else
{
realprice = baseprice * 0.6;
}
}
else
{
if ((intmonth <= 5) && (intmonth <= 10))
{
realprice = baseprice * 0.75;
}
else
{
realprice = baseprice * 0.3;
}
}
return realprice;
}

static void Main(string[] args)
{
Console.WriteLine("请输入乘客买票的月份:");
int input1 =Convert.ToInt16(Console.ReadLine());
Console.WriteLine("请输入乘客选择舱位");
Console.WriteLine("————头等舱请输入1,经济舱请输入2:");
int input2 = Convert.ToInt16(Console.ReadLine());
Ticket objTicket = new Ticket(input1, input2);
Console.WriteLine("您买的机票价格是:"+objTicket.Price());
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
学好数学数学好学
2009-09-12 · 超过62用户采纳过TA的回答
知道小有建树答主
回答量:736
采纳率:25%
帮助的人:191万
展开全部
以上的方法都可以,不过本人推荐第二个方法,使用面向对象的方法!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式