码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA常见算法题(二十九)

时间:2017-07-01 16:23:51      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:author   span   ++   长度   字符   new   auth   static   png   

package com.forezp.util;

import java.util.Scanner;


/**
 * 判断输入的5个字符串的最大长度,并输出
 * 
 * 
 * @author Administrator
 *
 */
public class StringDemo{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String[] str =new String[5];
        for(int x = 0; x<str.length;x++){
            str[x] = sc.nextLine();
        }
         String s = str[0];
        for(int x = 1;x<str.length;x++){
        if(str[x].length()>s.length()){
            String temp = str[x];
                str[x] =s;
                s = temp; 
            }
                    }
        System.out.println(s);
    }
}

 

运行结果:

技术分享

 

JAVA常见算法题(二十九)

标签:author   span   ++   长度   字符   new   auth   static   png   

原文地址:http://www.cnblogs.com/mr-wuxiansheng/p/7102422.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!