else if (50000 <= money < 100000)这么写为什么不行啊?
从左往右运算,50000 <= money 比较得到的结果是bool类型,拿bool类型和100000作比较,那肯定会报错啊
“<”无法应用于“bool”和“int”类型的操作数