我無法用Console.Read()方法讀取第二個字符。我的意思是我沒有得到任何提示從鍵盤讀取第二個字符。請幫忙嗎?另外,我知道字符默認是一個int,但我們仍然需要從輸入讀取時將其轉換爲char,是不是?下面的代碼讀取第一個字符,但第二個字符終止。在C中讀取兩個字符#
public static void Main()
{
Console.WriteLine("The First Character?:");
char firstChar=Convert.ToChar(Console.Read());
Console.WriteLine("The Second Character?:");
char secondChar=Convert.ToChar(Console.Read());
}
http://msdn.microsoft.com/en-us/library/system.console.read.aspx – 2011-03-02 02:09:37