紫竹


私信TA

用户名:urnachan

访问量:30202

签 名:

等  级
排  名 305
经  验 5576
参赛次数 0
文章发表 72
年  龄 0
在职情况 学生
学  校 合肥工业大学
专  业

  自我简介:

TA的其他文章

#include "stdafx.h"

#include "string.h"

int main()

{

int i,j=0, c1 = 0,c2=0;

char str[100000] = { 0 }, maxs[100] = { 0 }, tmax[100] = {0};

gets_s(str, sizeof(str));

for (i = 0; i <= strlen(str); i++)

{

if (str[i] != ' ')

{

maxs[j++] = str[i];

c1++;

}

if (str[i] == ' '||str[i]==0)

{

if (c1 > c2)

{

strcpy(tmax, maxs);

c2 = c1;

}

memset(maxs, 0, sizeof(maxs));

j = 0;

c1 = 0;

}

}

puts(tmax);

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »