我正试图通过网站完成初学者练习。
"要求: 变量,数据类型和数字运算符 基本输入/输出 逻辑(if语句,switch语句) 循环(for,while,do-while) 阵列
写一个程序,要求用户输入由10个不同的人(第1人,第2人,......,第10人)吃早餐的煎饼数量 一旦输入数据,程序必须分析数据并输出哪个人吃早餐最煎饼。"
我不确定如何让程序召唤出吃掉最多煎饼的人?当然,这需要用关键和价值来完成,但要求说明了数组'但不是地图'?
以下是我提出的代码,但这只输出了吃掉的最大煎饼数量,所以没有真正回答这个问题!
非常感谢您的帮助!
*在我确切知道如何做之前,我只使用了5个人来加快这个过程*
#include <iostream>
using namespace std;
int main()
{
cout << "how many pancakes did you eat for breakfast?" << endl;
int person1, person2, person3, person4, person5;
cout << "Person 1: ";
cin >> person1;
cout << "Person 2: ";
cin >> person2;
cout << "Person 3: ";
cin >> person3;
cout << "Person 4: ";
cin >> person4;
cout << "Person 5: ";
cin >> person5;
int array[5] = {person1, person2, person3, person4, person5};
int temp = 0;
for (int i = 0; i<5; i++)
{
if (array[i] > temp)
{
temp = array[i];
}
}
cout << "The most pancakes eaten was " << temp << "by " << endl;
}
答案 0 :(得分:2)
当然,这需要使用键和值
来完成
这不是唯一的方法。另一种方法是使用没有键的索引集合,并假设位置k
对应于可以仅从位置计算的键k
。例如,如果您有10个项目的数组,对应于编号为1到10的10个人,那么人员编号k
的数据可以存储在位置k-1
的数组中。在这种情况下不需要钥匙。
这个冗长的解释意味着如果您存储最佳i
以及最佳tmp
,那么您将在循环后获得答案:
int temp = 0;
int res = -1;
for (int i = 0; i<5; i++) {
if (array[i] > temp) {
temp = array[i];
res = i;
}
}
cout << "The most pancakes eaten was " << temp << "by " << (res+1) << endl;
请注意,res+1
已打印,而不是res
。这是因为数组是从零开始的,而计数是从一开始的。
使用将初始元素作为当前最佳元素并从1
开始迭代的常用习惯用语可以进一步缩短这一点:
int res = 0;
for (int i = 1 ; i<5 ; i++) {
if (array[i] > array[res]) {
res = i;
}
}
cout << "The most pancakes eaten was " << array[res] << "by " << (res+1) << endl;
答案 1 :(得分:1)
如果你在输入时跟踪吃掉的最大煎饼量会怎么样?
#include <iostream>
using namespace std;
// To execute C++, please define "int main()"
int main() {
int numPeople = 5;
int maxPancakes = -1;
int maxPerson = -1;
int currentPancakes = -1;
for (int i = 1; i < numPeople; i++) {
cout << "Person " << i << ": ";
cin >> currentPancakes;
if (currentPancakes > max) {
max = currentPancakes;
maxPerson = i;
}
}
cout << "Person " << maxPerson << " ate the most pancakes: " << maxPancakes;
return 0;
}
注意:我的c ++非常生疏,我还没有测试过这个解决方案。只是一个想法;)
答案 2 :(得分:0)
使用Map来解决这个问题将是一种过度杀伤力。数组绰绰有余。您甚至不需要遍历数组来检查谁吃的最多。获取最大值的操作实际上是 O(0),因为我们可以更新在输入值时最多吃的人。
int main(){
const int NUM_PEOPLE = 10;
int cakesEaten[10] = {0};
int maxEaten = 0;
int personId = 0;
cout << "How many pancakes eaten by:" << endl;
for(int x=0; x<NUM_PEOPLE; x++){
cout << "person " << (x+1) << ":";
cin >> cakesEaten[x];
if (cakesEaten[x] > maxEaten){
maxEaten = cakesEaten[x];
personId = x;
}
}
cout << "The most pancakes was eaten by person " << personID << endl;
}
答案 3 :(得分:0)
您根本不需要任何存储空间。
输入数字后,比较它们并存储具有当前最大值的人及其值
如果您使用第一个人的值作为起始值,则不需要从假值开始,如果输入,则可以包括负值。这可能是荒谬的,但总的来说,这是一种更好的做法。
另请注意,如果我们希望people
从1
开始,那么在1
启动它会更有意义,然后从0
开始并尝试记住始终添加1
。
这也很容易扩展到更多人,只需更改total_people
int main() {
const int total_people=5;
cout << "how many pancakes did you eat for breakfast?" << endl;
int what;
cout << "Person 1: ";
cin >> what;
int who=1;
int max_value=what;
for (int person = 2; person <= total_people; ++person) {
cout << "Person " << person << ": ";
cin >> what;
if (what > max_value) {
max_value=what;
who=i;
}
}
cout << "The most pancakes eaten was " << max_value << "by " << who << endl;
}