我在C#中制作计算器。这是乘法部分---
using System;
static class calculator
{
public static void Main()
{
welcome:
Console.WriteLine("Welcome to my calculator, please press enter to continue");
Console.ReadLine();
Console.WriteLine("Do you want to add, subtract, multiply or divide?");
string x = Convert.ToString(Console.ReadLine());
if (x == "multiply")
{
Console.WriteLine("Please enter the first value");
decimal value1multiply = Convert.ToDecimal( Console.ReadLine());
Console.WriteLine("Please enter the second value" );
decimal value2multiply = Convert.ToDecimal(Console.ReadLine());
Console.WriteLine("Result =");
Console.WriteLine(value1multiply * value2multiply);
Console.WriteLine("Thank you for using my calculator!Do you still want to use it?Please answer in 'yes' or 'no' and press 'enter'");
Console.ReadLine();
string yesorno =Console.ReadLine();
if (yesorno == "yes")
{
goto welcome;
}
if (yesorno == "no")
{
Environment.Exit(0);
}
}
}
}
当我问“是”时,控制台会引导我欢迎。但相反,它并没有引导我任何地方,仍然是空白。当我再次按回车键时,控制台关闭。为什么会发生这种情况?如何防止它?
我尝试过:
我尝试删除environment.exit(0),认为控制台正在引导我,但它没有帮助。我甚至尝试在Visual Studio中键入代码,但结果没有区别。 (我用尖锐的发展)
答案 0 :(得分:7)
除了使用goto
之外,您经常不赞成使用ReadLine
。{/ p>
下面:
Console.ReadLine();
string yesorno = Console.ReadLine();
也许您输入yes
然后按两次 Enter 。在这种情况下,yesorno
将为空,您的检查将失败。第一个条目被第一个未分配给变量的ReadLine
吞没。