菜鸟不懂!请指教!
Console.WriteLine("依次输入两个数值和一个运算符");//6double x1 = Convert.ToDouble(Console.ReadLine());
double x2 = Convert.ToDouble(Console.ReadLine());
double y = Convert.ToDouble(Console.ReadLine());
string z = Convert.ToString(Console.ReadLine());
if (z ="*")
{
y = x1 * x2;
}
else if (z = "/")
{
y = x1 / x2;
}
else if (z = "+")
{
y = x1 + x2;
}
else if (z = "-")
{
y = x1 - x2;
}
else
{
Console.WriteLine("请正确输入");
}
Console.WriteLine(y);
错误提示(无法将类型“string” 隐式转换为“bool”)
不明白 题目是 从键盘输入两个数值和一个运算符(*/+-),利用switch和if语句计算并输出结果
麻烦各位帮帮忙!