我試圖讓這個小電影評級程序正常工作,一切正常,直到我開始提示評級人員進入評級。它讓我評價兩個行爲都很好,但只要我點擊輸入按鈕評級音樂將下移到一個空白行,而不是提示下一個輸入。我解決這個問題的唯一方法似乎是讓我輸入兩次。未處理的異常:System.FormatException:輸入字符串的格式不正確
感謝
Console.WriteLine("Rate the following out of 5");
Console.Write("Acting > ");
acting_rating = int.Parse(Console.ReadLine());
Console.Write("Music > ");
Console.ReadLine();
music_rating = int.Parse(Console.ReadLine());
Console.Write("Cinematography > ");
Console.ReadLine();
cinematography_rating = int.Parse(Console.ReadLine());
Console.Write("Plot > ");
Console.ReadLine();
plot_rating = int.Parse(Console.ReadLine());
Console.Write("Duration > ");
Console.ReadLine();
duration_rating = int.Parse(Console.ReadLine());
你的第一個陳述是錯誤的:Console.ReadLine'的MSDN頁面明確指出,*「返回的字符串不包含終止字符。」* – stakx
我的壞 - 更正... – Yahia