我编写了一个控制台应用程序来计算段落中非空格字符的数量,但它无法正常工作。
int l=0;
string s;
Console.WriteLine("Enter Paragraph: ");
s = Console.ReadLine();
foreach (char c in s)
{
if (char.IsLetter(c))
{
l++;
}
}
l = Convert.ToInt32(s.Length);
Console.WriteLine("Your Paragraph Length is: " + l);
Console.ReadLine();