好的,我還需要使用單獨的10個元素的數組,在增加5%後計算和顯示每個高度。有任何想法嗎?對不起,這一切。這是我第一次使用數組。在數組中顯示最小值
#include <iostream>
using namespace std;
int main()
{
int MINheight = 0;
double height[10];
for (int x = 0; x < 10; x = x + 1)
{
height[x] = 0.0;
}
cout << "You are asked to enter heights of 10 students. "<< endl;
for (int x = 0; x < 10; x = x + 1)
{
cout << "Enter height of a student: ";
cin >> height[x];
}
system("pause");
return 0;
}
使用現有的算法。 'std :: min_element'就在你家門口。 – chris
我道歉,但我不知道如何使用std :: min_element,有人可以解釋嗎?我目前正在尋找一個例子 – user2040308
如果你首先閱讀迭代器可能會很好。有了這些知識,並且知道數組可以衰減爲指向其第一個元素的指針,那麼可以將這些指針用作算法的隨機訪問迭代器,或者使用諸如「std :: begin」和「std :: end」之類的東西,它與純數組一起工作,以及更好的'std :: array'。 – chris