A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 宋健 中级黑马   /  2013-3-12 08:50  /  1236 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

让用户输入一句话,找出所有e的位置;
例如"abceeheterrrreue",
分别输出e出现的位置

评分

参与人数 1技术分 +1 收起 理由
张文 + 1

查看全部评分

2 个回复

倒序浏览
string str="abceeheterrrreue";
char[] ch=str.ToCharArray();
for(int i=0;i<ch.count;i++)
{
    if(ch[i]=='e')
    {
    Console.Write(i+1);
    Console.Write(" ");
     }
}

评分

参与人数 1技术分 +1 收起 理由
张文 + 1

查看全部评分

回复 使用道具 举报
完整代码:
  1. static void Main(string[] args)
  2.         {
  3.             string str = "asdfasdferqwergadfqe";
  4.             List<int> list = new List<int>();//用于存储e的位置
  5.             //遍历字符串中的每一个字符
  6.             for (int i = 0; i < str.Length; i++)
  7.             {              
  8.                 if (str[i] == 'e')
  9.                 {
  10.                     list.Add(i);                    
  11.                 }
  12.             }
  13.             //遍历字符e在字符串中的所有下标位置
  14.             for (int index = 0,i=1; index < list.Count; index++,i++)
  15.             {               
  16.                 Console.WriteLine("共有{0}个e,第{1}次出现位置的索引为:{2}",list.Count, i, list[index]);               
  17.             }         
  18.             Console.ReadKey();
  19.         }
复制代码

评分

参与人数 1技术分 +1 收起 理由
张文 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马