Faith


私信TA

用户名:1310510120

访问量:42372

签 名:

求介绍工作

等  级
排  名 217
经  验 6352
参赛次数 1
文章发表 54
年  龄 0
在职情况 学生
学  校 武汉生物工程学院
专  业

  自我简介:

解题思路:





注意事项:





参考代码:

import java.util.Scanner;
public class 最长单词 {
     public static void main(String[] args) {
          Scanner in=new Scanner(System.in);
          String str=in.nextLine();
          int length=0;int max=0;int maxi=0;
  
          for(int i=0;i<str.length();i++){
               if(str.charAt(i)!=' ')length++;
                  else if(length>max){max=length;maxi=i-1;length=0;}
                   else length=0;
   //知道长度知道字符串末尾位置就能输出这个字符串
      }
              if(length>max){
               max=length;maxi=str.length()-1;
 }
  System.out.print(str.substring(maxi-max+1, maxi+1));
}
}

 

 

0.0分

0 人评分

  评论区

  • «
  • »