码迷,mamicode.com
首页 > 其他好文 > 详细

2017.10.31

时间:2017-10-31 23:47:44      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:space   pac   pause   str   title   man   put   etc   include   

题目描述

给定一个英文字符串,请写一段代码找出这个字符串中首先出现三次的那个英文字符。

输入描述:

输入数据一个字符串,包括字母,数字等。

输出描述:

输出首先出现三次的那个英文字符
示例1

输入

Have you ever gone shopping and

输出

e


程序来自网上,侵权即删。

技术分享

 

#include <iostream>
#include <stdio.h>
#include <math.h>
#include <iomanip> //不能写成#include <iomanip.h>
#include <string.h>

using namespace std;

/* run this program using the console pauser or add your own getch, system("pause") or input loop */
#include<stdio.h>
#include<string.h>

int main()
{
char c;
int a[300]={0};
while((c=getchar()) != EOF)
{
if((c >= ‘a‘ && c <= ‘z‘) || (c >= ‘A‘ && c <= ‘Z‘))
{
a[c]++;

if(a[c] == 3)
{
printf("%c",c);
break;
}

}
}
return 0;
}

2017.10.31

标签:space   pac   pause   str   title   man   put   etc   include   

原文地址:http://www.cnblogs.com/panlangen/p/7764289.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!