gpt4 book ai didi

c++ - 在 C++ 中寻找吃得最少的人

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

我编写的代码可以让您看到哪个人吃得最多和最少。但是,我的代码无法找到谁吃得最少。我能够找出谁吃得最多,并尝试使用与该代码相反的代码来找出谁吃得最少。这是代码:

#include <iostream>
using namespace std;
int main()
{
int people[10] = { 1,2,3,4,5,6,7,8,9,10 };
int pancakes[10];
int m = 0; // most pancakes eaten
int l = 1; // least pancakes eaten
int mp = 0; // most people
int lp = 1; // least people
for (int x = 0; x < 10; x++)
{
cout << people[x] << " ate: ";
cin >> pancakes[x];
}
for (int x = 0; x < 10; x++)
{
if (pancakes[x] > m)
{
m = pancakes[x];
mp = people[x];
}
else if (pancakes[x] <= l)
{
l = pancakes[x];
lp = people[x];
}
}
cout << endl;
cout << mp << " person ate most: " << m << " pancakes\n";
cout << lp << " person ate least: " << l << " pancakes\n";
return 0;
}

附言我只能使用这些:

  • 变量、数据类型和数值运算符
  • 基本输入/输出
  • 逻辑(if 语句、switch 语句)
  • 循环(for、while、do-while)
  • 数组

最佳答案

要么将 l 初始化为大数,要么更好地将 l 设为数组中的某个值,例如:l = pancakes[0] .将该行添加到第一行下方,以便像这样:

    for(int x = 0; x < 10; x++)
{
cout << people[x] << " ate: ";
cin >> pancakes[x];
}

m = pancakes[0];
l = pancakes[0];
...

ml 应该是 pancakes 数组中的实际值,而不是一些随机值。

您的代码不起作用,因为您将 l 设置为 1,并且只有当有人吃的煎饼少于 1 个时,代码才会在最后一个 if语句将被执行。

关于c++ - 在 C++ 中寻找吃得最少的人,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51011406/

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