让用户输入一句话,找出所有e的位置。
static void Main(string[] args)
{
//让用户输入一句话,找出所有e的位置。
string say = "eyou are a bee and ea she are";
int w = 0;
for (int i = 0; i < say.Length;i++)
{
w = say.IndexOf('e',i+1);
Console.WriteLine("e的位置为{0}", w + 1);
}
console.readkey();
}
还有什么跟好的方法 |
|