输出句子中最长的单词C语言

#include
using namespace std;
int main()
{
	char a[500];
	int i,cnt=0,max=0,j;
	
	gets(a);
	for(i=0;a[i]!='\0';i++)
	{
		cnt++;
		
		if(a[i]==32)
			cnt=0;
		
		else if(cnt>max)
		{
			max=cnt;
			j=i;
		}
		
	}
	for(i=j-max+1;i<=j;i++)
	{
		cout<

你可能感兴趣的:(c语言,算法,开发语言)