首页 > 代码库 > 本程序找出字符串数组 String[] arr = {“welcome”, “china”, “hi”, “congratulation”, “great”} 中的长度最大的元素,并打印输出。
本程序找出字符串数组 String[] arr = {“welcome”, “china”, “hi”, “congratulation”, “great”} 中的长度最大的元素,并打印输出。
/**
* Homework14
*
* @Description:本程序找出字符串数组 String[] arr = {“welcome”, “china”, “hi”,
* “congratulation”, “great”} 中的长度最大的元素,并打印输出。
* StringDemo01
*
* @author
*
* email: 1816274408@qq.com 2017年4月18日下午6:33:59
*
*/
public class StringDemo01 {
public static void main(String[] args) {
String[] arr = { "welcome", "china", "hi", "congratulation", "great" };
System.out.print("原字符串数组为:\t");
for (String x : arr) {
System.out.print(x + " ");
}
String str = arr[0];
for (int i = 0; i < arr.length - 1; i++) {
if (arr[i].length() < arr[i + 1].length()) {
str = arr[i + 1];
}
}
System.out.println("\n 该数组长度最大的元素为:" + str);
}
}
本程序找出字符串数组 String[] arr = {“welcome”, “china”, “hi”, “congratulation”, “great”} 中的长度最大的元素,并打印输出。