如何输出序列次数?
编写一个程序读取输入,直到‘#’结束,并报告序列ie出现的次数。(不用数组写入)
回复 4楼 pangshch
很好!要的就是你的思路。只是我要的是ei序列,你的程序是ie序列,所以稍微改一下就好了:
char ch,lastch;
lastch='a';
int count=0;
while((ch=getchar())!='#')
{
if(ch=='i')
if(lastch=='e')
count++;
lastch=ch;
}
谢谢啦!