c#如何查找输入了多少数字

本文关键字:输入 多少 数字 查找 何查找 | 更新日期: 2023-09-27 18:08:49

如何查找输入了多少数字?

 static void Main(string[] args)
    {
        string x;               
        double t, s = 1;
        while ((x = Console.ReadLine()) != null)
        {        

        }

c#如何查找输入了多少数字

要将数字输入为双精度类型,可以使用double。在这里尝试解析Google将"x"转换为"t",然后以某种方式对其进行操作。如果你想要更具体的东西,你需要分享你正在尝试做的事情(预期的输入/预期的输出)。您的英文"输入了多少数字"不清楚。

  static void Main(string[] args)
{
    string x;               
    double t,tot=0, s = 1;
    while ((x = Console.ReadLine()) != null)
    {        
        if(double.TryParse(x,out t))
        {
            //t is now the number entered as a double -- process
            tot+= t;
            Console.WriteLine(s==1?"Please enter your second number":"The sum of your "+s.ToString()+" numbers is "+tot.ToString("N0"));
            s++;

        }else{
            Console.WriteLine("You may only enter numbers. Please try again.'n");
        }
    }