weixin_慕圣123926
2019-10-26 13:17
namespace Test
{
class Program
{
static void Main(string[] args)
{
double money = 60000.00;//存款金额
if(money>= 100000){
Console.WriteLine("送一台微波炉");
}
else{
if(50000<=money&&money<100000)
{
Console.WriteLine("送一套茶具");
}
else{
if(10000<=money&&money<50000){
Console.WriteLine("送一袋大米");
}
else{
Console.WriteLine("没有礼品");
}
}
}
}
}
}
是else if 最后一句就写else 就可以了
应该 是else if 吧
C#开发轻松入门
254118 学习 · 1459 问题
相似问题