#35434: c++ initializer list


krameri120 (科科)

學校 : 國立臺南高級工業職業學校
編號 : 102318
來源 : [36.237.203.195]
最後登入時間 :
2025-03-24 14:35:26

#include <iostream>
#include <algorithm>
using namespace std;

int main() {
    constexpr int size = 3;
    int line[size] = {0};
    for (auto &x : line){
        cin >> x;
    }
    cout << max({line[0], line[1], line[2]});
    return 0;
}