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();
}
还有什么跟好的方法作者: 滔哥 时间: 2013-3-11 13:36
.NET 请去.NET发帖别到java相关,是不会获取技术分的。作者: 张怀晶 时间: 2013-3-11 14:24