日期:2014-05-18 浏览次数:21060 次
int l = 0, d = 0, o = 0; Console.WriteLine("请输入字符:"); string str = Console.ReadLine(); foreach (char c in str) { if (c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z') l++; else if (c >= '0' && c <= '9') d++; else o++; } Console.WriteLine("{0},{1},{2}", l.ToString(), d.ToString(), o.ToString()); Console.ReadKey();
------解决方案--------------------
因为回车符是'\r\n'吗,而循环没判断'\r'。看第5行。
static void Main(string[] args) { char c; int l = 0, d = 0, o = 0; Console.WriteLine("请输入字符:"); c = (char)Console.Read(); while (c != '\n' && c != '\r') { if (c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z') l++; else if (c >= '0' && c <= '9') d++; else o++; c = (char)Console.Read(); } Console.WriteLine("{0},{1},{2}", l, d, o); Console.ReadLine(); }