原题网站:PTA | 程序设计类实验辅助教学平台
#include <iostream>
#include <cstring>
using namespace std;
//判断字符是不是英文字符
bool isEnglishChar(char c)
{
if((c >= 'a' && c <= 'z' ) || (c >= 'A' && c <= 'Z'))
return true;
else return false;
}
//查找每个单词,返回最长的
//算法:重复查找,如果英文字符不断增加1,否则如果遇到一个非英文字符,然后
//判断他是不是最长。
void getLongestWord(char s[])
{
int len = strlen(s);
char longestWord[100], tempWord[100];
int longestLen = 0, tempLen = 0;
for(int i = 0 ; i <= len ; i ++)
{
if(isEnglishChar(s[i])) //英文字符
{
tempWord[tempLen] = s[i];
tempLen ++;
}
else //非英文字符
{
if(tempLen != 0)
{
if(tempLen > longestLen)
{
longestLen = tempLen;
tempWord[tempLen] = '\0';
//longestWord = tempWord;(错误)
strcpy(longestWord, tempWord);
}
tempLen = 0;
}
}
}
cout << longestWord << endl;
}
int main()
{
char s[100];
while(cin.getline(s, 100))
{
getLongestWord(s);
}
return 0;
}