用C#编写一个程序,统计从控制台输入的字符串中出现字母A的次数
时间: 2023-11-11 11:06:51 浏览: 158
统计字符串每个字母出现的次数
好的,我来为您解答这个问题。
以下是用C#编写的程序,统计从控制台输入的字符串中出现字母A的次数:
```
using System;
class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入字符串:");
string input = Console.ReadLine();
int count = 0;
foreach (char c in input)
{
if (c == 'A' || c == 'a')
{
count++;
}
}
Console.WriteLine("字母A出现的次数为:" + count);
}
}
```
程序中先让用户输入一个字符串,然后使用`foreach`循环遍历字符串中的每个字符。
在循环中,如果当前字符是字母A或a,则将计数器`count`加1。
最后输出字母A出现的次数。
希望对你有所帮助!
阅读全文