if (money > 100000)//请在这里补充多重条件判断
{ Console.WriteLine("送一台微波炉"); }
else if(money < 10000)
{ Console.WriteLine("没有礼品"); }
else if(50000 < money )
{ Console.WriteLine("送一套茶具"); }
else { Console.WriteLine("送一袋大米"); }
{ Console.WriteLine("送一台微波炉"); }
else if(money < 10000)
{ Console.WriteLine("没有礼品"); }
else if(50000 < money )
{ Console.WriteLine("送一套茶具"); }
else { Console.WriteLine("送一袋大米"); }
最赞回答 / 蜗牛大叔
换 foreach,要把break调到if外面,即:foreach(int i in num) { if (num[i] % 7 == 0) { hasit = true; } break; }
2020-02-15
最赞回答 / 中年小白
搞明白了, bool a = ++x * x > 3;在这行代码中x=2了,bool b = ++x*4 > 9 在这行中 ++x=3 ,3*4=12 >9 是true a&&b 就是true&&true
2020-02-12