2017.10.31

Posted P_langen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2017.10.31相关的知识,希望对你有一定的参考价值。

题目描述

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

输入描述:

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

输出描述:

输出首先出现三次的那个英文字符
示例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的主要内容,如果未能解决你的问题,请参考以下文章

日常补题2017-10-31

SQA

2017-10-31

微信小程序代码片段

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js