一直报错,真的不知道自己哪里写错了
一直报错,实在不知道自己哪里写错了,哪位大佬帮忙看看,谢谢啦
一直报错,实在不知道自己哪里写错了,哪位大佬帮忙看看,谢谢啦
2020-07-10
尝试用别的方法写,运行成功!
源代码:
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
double money = 60000.00;//存款金额
//请在这里补充多重条件判断
if(money>=100000)
{
Console.WriteLine("送一台微波炉");
}
else
{
if(money>=50000)
{
Console.WriteLine("送一套茶具");
}
else
{
if(money>=10000)
{
Console.WriteLine("送一袋大米");
}
else
{
Console.WriteLine("没有礼品");
}
}
}
}
}
}
举报