我正在尝试对价格进行分组。例如:导师的费用为每5人100欧元; 6人需要2位家教,所以要花200欧元。
基本上我不知道该怎么做,这就是我尝试过的。我所做的工作非常完美,但是假设用户输入了一个更大的数字,而我没有输入if语句如何解决它?谢谢
int tutorprice;
int students;
Console.WriteLine("How many students");
students = Convert.ToInt32(Console.ReadLine());
if (students <= 1 && students <= 5)
{
tutorprice = 100;
}
else if (students > 5 && students <=10 )
{
tutorprice = 200;
}
答案 0 :(得分:0)
您在这里有2个问题。 首先,您需要学习基本的实现。为此,您可以在其他地方搜索帮助。 要实现最佳计算功能,您应该查看以下主题: Math Round to always upper integer