2017.10.31
Posted P_langen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2017.10.31相关的知识,希望对你有一定的参考价值。
题目描述
输入描述:
输入数据一个字符串,包括字母,数字等。
输出描述:
输出首先出现三次的那个英文字符
输入
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的主要内容,如果未能解决你的问题,请参考以下文章