gpt4 book ai didi

java - 整数数组

转载 作者:行者123 更新时间:2023-11-30 03:12:30 28 4
gpt4 key购买 nike

public static boolean have(int x, int count) {
int i;
count = 1;
for (i = 0; i < array.length; i++) {
if (x >= 1) return true;
}
return false;
}

如果结构中至少存在给定数量的给定数字,则 boolean 方法返回 true。

最佳答案

您需要首先计算该元素在数组中出现的次数。使用 for-each loop ,这可能看起来像

int vcount = 0;
for (int val : array) {
if (x == val) {
vcount++;
if (vcount >= count) return true;
}
}
return false;

return vcount >= count; // <-- to handle count == 0.

关于java - 整数数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33337385/

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