無法將字符串轉換爲字符錯誤消息。我試圖編寫一個程序,例如,允許用戶輸入1800HIETHC,並且它會將所有數字都返回給用戶。 我已經卡住....任何幫助或建議做什麼?將字符串轉換爲字符錯誤消息
static void Main(string[] args)
{
char number = ' ';
int numb = 0;
Console.WriteLine("Please enter the telephone number...");
number = Console.ReadLine();
while (number <= 10)
{
if (number == 'A')
{
numb = 2;
}
}
Console.WriteLine(numb);
}
}
}
除了處理「A」,你嘗試過什麼?你的結果是什麼?任何錯誤?你提供的信息和展示你解決你自己的問題的嘗試,你會得到答案的可能性就越大。 – davids