using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
public int Length { get; private set; }
static void Main(string[] args)
{
const string s = "java c# c++ ada";
int i = 0, count = 0;
while ((i = s.IndexOf('a', i)) != -1)
{
count++;
i++;
}
Console.WriteLine(count);
}
}
}
/*
run:
4
*/