gpt4 book ai didi

java - 字符串数组中每个元素的平均长度

转载 作者:行者123 更新时间:2023-11-30 01:45:25 25 4
gpt4 key购买 nike

我正在尝试获取字符串数组中每个元素的平均长度。但不确定我的代码。有什么建议吗?

public static double averageLength(String[] words, int count) {

double countedLength = 0.0;


for(int i = 0; i < words.length; i++) {
countedLength += words[i].length();
count++;
}

return (double)countedLength / count;
}

最佳答案

您还可以使用 Stream API 来执行此任务:

public static double averageLength(String[] words) {
return Arrays.stream(words)
.mapToDouble(String::length)
.average()
.getAsDouble();
}

关于java - 字符串数组中每个元素的平均长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58212264/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com