gpt4 book ai didi

c++ - 在数组中查找最小值

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:12:54 28 4
gpt4 key购买 nike

<分区>

我有两个数组:

int playerSums[9] = { };
string playerNames[9] = { };

我正在尝试获取数组 playerSums 中的最小值 以及该值的数组索引

这是我到目前为止尝试过的:

if (playerNames[index] == "End" || playerNames[index] == "end") {
int lowestValue = playerSums[0];
for (i = 1; i < sizeof(playerSums) / sizeof(playerSums[0]); i++) {
if (playerSums[i] < lowestValue || lowestValue != 0)
lowestValue = playerSums[i];
}
cout << index[playerNames] << " had the lowest values and got the sum ";
cout << lowestValue << endl;
}

如果例如 只有 3 个玩家 在玩游戏,我如何找到并显示数组 playerSums 中的最小值,即数组中只有 3 个元素被填充(并且其余元素等于零)?

我需要索引来显示获得最小值的玩家的名字。

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