欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【C++】求10个数中的最大值和最小值

程序员文章站 2024-02-02 15:25:16
...
#include <iostream>
using namespace std;

int main() {
	int a[10], max, min;
	for (int i = 0; i <10; i++) {
		cin >> a[i];
	}
	max = a[0];
	min = a[0];
	for (int j = 0; j < 10; j++) {
		if (max < a[j]) {
			max = a[j];
		}
		if (min > a[j]) {
			min = a[j];
		}
	}
	cout << "最大值:" << max << endl;
	cout << "最小值:" << min << endl;
	return 0;
}
相关标签: c++