gpt4 book ai didi

c# - 在控制台 C# 中写入 double

转载 作者:太空宇宙 更新时间:2023-11-03 10:47:54 27 4
gpt4 key购买 nike

关于 C#,我需要你的帮助。我正在创建这个程序:

static void Main()
{
Console.WriteLine("You weight is: ");
double weight = Double.Parse(Console.ReadLine());
Console.WriteLine("Your weight on Moon is: + {0}",weight*0.17);
}

问题是,当我启动程序并输入一个重量数字(例如 35.9)时,程序崩溃了。

最佳答案

它不会崩溃。它关闭。

如果您希望窗口保持打开足够长的时间以阅读消息,则需要将 Console.ReadLine() 放在该方法的末尾。

static void Main()
{
Console.WriteLine("You weight is: ");
double weight = Double.Parse(Console.ReadLine());
Console.WriteLine("Your weight on Moon is: + {0}",weight*0.17);

Console.ReadLine(); // waits for input, allowing you to read the message
}

关于c# - 在控制台 C# 中写入 double,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22736236/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com