Chương trình c + + Nhập vào n số nguyên a1, a2,....aN tìm số lớn nhất của n số trên

1 câu trả lời

#include<iostream>
using namespace std;

int main() {
    int n;
    cin >> n;
    int a[1000];
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }

    int maxValue = a[0];
    for (int i = 0; i < n; i++) {
        if (a[i] > maxValue) {
            maxValue = a[i];
        }
    }
    cout << maxValue;
    return 0;
}

Câu hỏi trong lớp Xem thêm