商场购物可以打折,具体折扣如下表
顾客 折 扣
普通顾客购物满100元 9折
会员购物 8折
会员购物满200元 7.5折
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace test3
{
class Program
{
static void Main(string[] args)
{
Console.Write("请输入是否是会员:是(y)/否(n)");
string str_hy = Console.ReadLine();
Console.Write("请输入购物金额:");
string str_money = Console.ReadLine();
double money = Convert.ToInt32(str_money);
if (str_hy == "y")
{
if (money > 200)
{
money = money * 0.75;
}
else
{
money = money * 0.8;
}
}
else
{
if (money > 100)
{
money = money * 0.9;
}
}
Console.WriteLine("实际支付:{0:0.00}",money);
Console.ReadKey();
}
}
}