我正在尝试为组定价。例如:一个家教的费用是每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;
}
拉莫斯之舞
相关分类