本程序找出字符串数组 String[] arr = {“welcome”, “china”, “hi”, “congratulation”, “great”} 中的长度最大的元素,并打印输出。
Posted 读你一世
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了本程序找出字符串数组 String[] arr = {“welcome”, “china”, “hi”, “congratulation”, “great”} 中的长度最大的元素,并打印输出。相关的知识,希望对你有一定的参考价值。
/**
* Homework14
*
* @Description:本程序找出字符串数组 String[] arr = {“welcome”, “china”, “hi”,
* “congratulation”, “great”} 中的长度最大的元素,并打印输出。
* StringDemo01
*
* @author
*
* email: [email protected] 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”} 中的长度最大的元素,并打印输出。的主要内容,如果未能解决你的问题,请参考以下文章