"System.FormatException: 'Input string was not in a correct format" 数组错误

"System.FormatException: 'Input string was not in a correct format" error in arrays

大家好,这是我的代码:

        double[] milad = new double[5];
        for (int i = 0; i < milad.Length; i++)
        milad[i] = double.Parse(Console.ReadLine());

但是当我输入像 25.5 这样的浮点数时,编译器出现错误“System.FormatException:‘输入字符串的格式不正确’ 有人可以帮我吗?

您的代码运行没有错误,可能是您的输入有误。

不要使用 ',' 而不是 '.'

这是我的输出:

把你的错误在下面评论给我,我会给你建议。