Неверное выражение в переключателе регистра
Это сводило меня с ума весь день.
private void BtnMix_Click(object sender, EventArgs e)
{
//Declare the variables to be used in the process
String Color1;
String Color2;
//Determine whether or not a selection has been bade
if (Colorlist1.SelectedIndex != -1 && ColorList2.SelectedIndex != -1)
{
//Get the selected colors
Color1 = Colorlist1.SelectedItem.ToString();
Color2 = ColorList2.SelectedItem.ToString();
//Determine the correct result
switch (Color1 +|+ Color2)
{
case "Red|Red":
lblResult.Text = "Red";
break;
case "Red|Blue":
Lblresult.text ="Purple";
break;
case "Red|Yellow":
lblresult.text = "Orange";
break;
case "Blue|Red":
lblresult.text = "Purple";
break;
case "Blue|Blue":
lblresult.text = "Blue";
break;
case "Blue|Yellow":
lblresult.text = "Green";
break;
case "Yellow|Red":
lblresult.text = "Orange";
break;
case "Yellow|Blue":
lblresult.text = "Green";
break;
case "Yellow|Yellow":
lblresult.text = "Yellow";
break;
}
}
else
{
MessageBox.Show("Please select two colors");
}
}
Я знаю, что есть что-то невероятно простое, что мне не хватает, но я не могу этого понять. До сих пор мне удалось заставить все "работать", но эта последняя ошибка, похоже, не имеет никакого смысла. "Неверное выражение для термина" | " "на линии 15.
2 ответа
Если вы хотите объединить строки, пожалуйста, используйте
Color1 + "|" + Color2
Итак, теперь ваш код должен выглядеть так:
switch (Color1 + "|" + Color2)
Кроме того, вы получите еще одну ошибку в строке № 21, потому что вы использовали прописные буквы "L" вместо строчных "l" в Lblresult
В нем отображается недопустимый класс переключателя терминов выражения Program { static void Main() { int Totalcoffeecost = 0; строка Userdecision = string.Empty; do { int userchoice =-1; делать {
Console.WriteLine("Please enter your coffee size: 1-small, 2-Medum,3-Large");
userchoice = int.Parse(Console.ReadLine());
}while(
switch (userchoice)
{
case 1:
Totalcoffeecost += 1;
break;
case 2:
Totalcoffeecost += 2;
break;
case 3:
Totalcoffeecost += 3;
break;
default:
Console.WriteLine("Your choice {0} is invalid", userchoice);
break;
}
while(userchoice !=1 && userchoice !=2 && userchoice !=3)
do
{
Console.WriteLine("Do you want to buy another coffee-Yes or No");
string userdecision = "";
userdecision = Console.ReadLine().ToUpper();
if(userdecision != "Yes" && userdecision !="No")
{
Console.WriteLine("your choice {0} is invalid. Please try again",userdecision);
}
}while(Userdecision != "Yes" && Userdecision != "No");
}
while(Userdecision.ToUpper()!="No");
Console.WriteLine("Thank you for shopping with us");
Console.WriteLine("Bill amount={0}",Totalcoffeecost );
}
}