Bootstrap

C++寻找数组中的最大值

#include<iostream>
using namespace std;

int main() {
	//寻找数组中的最大值

	int arr[5] = { 300,350,200,250,400 };

	//先假定一个最大值,一般都认为是0
	int max = 0;

	//访问数组中的每一个元素,如果这个元素比认定的最大值max还要大,那么更新最大值
	for (int i = 0; i < 5; i++)
	{
		if (arr[i]>max)
		{
			max = arr[i];
		}
	}
    //遍历完数组后,得到的最终结果就是最大值
	cout << max << endl;

	system("pause");
	return 0;
}

;