终可以


私信TA

用户名:dotcpp0715440

访问量:511

签 名:

等  级
排  名 1422
经  验 2888
参赛次数 0
文章发表 8
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:


从找到第一个字母开始计数,并记录位置,直到找到空格或者‘。’,不断更新

注意事项:

参考代码:

#include<bits/stdc++.h>

using namespace std;

typedef long long ll;

int main()

{

   string s;

int sum=0,ans=0,begin1 =0,end1 =0,begin2 =0,end2 =0;

   getline(cin,s);

   int k=s.length();

   //cout<<k<<endl;

   for(int i=0;i<k;i++)

   {

       // cout<<s[i];

       if(('a'<=s[i] && s[i]<='z') ||('A'<=s[i] &&s[i]<='Z'))

       {   

           begin1 = i;

          // cout<<begin1<<endl;

           sum++;

       }

       if(s[i] == 32 ||s[i]=='.')

       {    

           end1 = i-1;

           if(sum>ans)

           {

               ans = sum;

               sum =0;

               begin2 = begin1 ;

               end2   = end1;

           }

           else

           {

               sum = 0;

               begin1 = 0;

               end1   = 0;

           }

       }

   }

   //cout<<begin2<<" "<<end2<<endl;

   for(int j=(begin2-ans)+1;j<=end2;j++)

   {

       cout<<s[j];

   }

    return 0;

}


 

0.0分

1 人评分

  评论区

  • «
  • »