本程序找出字符串数组 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”} 中的长度最大的元素,并打印输出。的主要内容,如果未能解决你的问题,请参考以下文章

如何用Java找出一个整数数组中最大的值,并返回最大值的数组下标,尤其是有两个或是三个最大值时?

java中怎么样子找出数组中重复的数,并去除

PHP将数组转字符串

找出数组 arr 中重复出现过的元素

String类型方法

1.找出数组元素item在给定数组arr中的位置