C#基本题目,帮忙做下啦
机票预定:输出实际机票价格.原价为4000元5-10月为旺季,头等舱打9折,经济舱打7.5折。其他时间为淡季,头等舱打6折,经济舱打3折。需要两次判断一次是月份,还有一次...
机票预定:输出实际机票价格.
原价为4000元
5-10月为旺季,头等舱打9折,经济舱打7.5折。
其他时间为淡季,头等舱打6折,经济舱打3折。
需要两次判断一次是月份,还有一次舱位,用if实现
是用Visual Studio 来写的 输出,读出用Console.WriteLine Console.ReadLine 展开
原价为4000元
5-10月为旺季,头等舱打9折,经济舱打7.5折。
其他时间为淡季,头等舱打6折,经济舱打3折。
需要两次判断一次是月份,还有一次舱位,用if实现
是用Visual Studio 来写的 输出,读出用Console.WriteLine Console.ReadLine 展开
4个回答
展开全部
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();
}
{
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();
}
展开全部
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();
}
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();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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());
}
}
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());
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
以上的方法都可以,不过本人推荐第二个方法,使用面向对象的方法!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询