在搜索和搜索(你知道它是怎么回事)之后,我无法弄清楚为什么这段代码不起作用。
我只是想让它像这样工作
if (Nummer == "") {
Console.WriteLine("0");
}
就是这样,它不起作用。我已经找了一个半小时了。不明白为什么有一个简单的基本解释。我只找到了如何用字符串或其他东西修复它,然后我尝试转换它,但它仍然不起作用。有人能帮助我吗?
感谢您对我有限的知识的耐心。谢谢你的时间
static void Main(string[] args)
{
bool herhaal = true;
do
{
Console.Write("Geef een getal : ");
int Nummer = Convert.ToInt16(Console.ReadLine());
if (Console.ReadLine() == "" && Console.ReadLine() == null)
{
Console.WriteLine("0");
}
double kw = Math.Pow(Nummer, 2);
Console.WriteLine("Kwadraat van {0} is: {1}", Nummer, kw + Environment.NewLine);
} while (herhaal);
}
弑天下
翻阅古今
相关分类