解题思路:
注意事项:
参考代码:
import java.util.*; import java.math.*; public class Main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); int k=0; String[] arr=new String[1001]; Scanner s=new Scanner(sc.nextLine()); while(s.hasNext()){ arr[k++]=s.next(); } int max_length=0; int max_i=0; for(int i=0;i<k;i++){ if(arr[i].length()>max_length){ max_length=arr[i].length(); max_i=i; } } System.out.println(arr[max_i]); } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:1914 |
哥德巴赫曾猜测 (C语言代码)浏览:1150 |
P1001 (C语言代码)浏览:836 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:732 |
1017题解浏览:663 |
1025题解浏览:796 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:513 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:636 |
C语言程序设计教程(第三版)课后习题6.10 (C语言代码)浏览:538 |
A+B for Input-Output Practice (I) (C语言代码)浏览:599 |