using System;
namespace Excellent_Result
{
class Program
{
static void Main(string[] args)
{
double grade = double.Parse(Console.ReadLine());
if (grade >= 5.50)
Console.WriteLine("Excellent!");
}
}
}
これは非常に簡単な宿題の問題だと断言しますが、double 型でエラーが発生します。
Exception thrown: 'System.FormatException' in System.Private.CoreLib.dll
An unhandled exception of type 'System.FormatException' occurred in System.Private.CoreLib.dll
Input string was not in a correct format.
これは例外であり、私は Visual Studio が好きではないので、どのように設定すればよいかわかりません。大学のシステムでは、このコードが正しく記述され、動作していると認識されます。
答え1
おそらく double.parse が機能していないのでしょう。
以下のように入力文字列を double に変換してみます。
ダブルグレード = convert.ToDouble(Console.ReadLine());