Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
#include <iostream> #include <algorithm> int main() { std::cout << std::max({42, 42, 42, 22, 55, 12, 55, 66, 57, 99, 25, 51, 42}) << std::endl; }
#include <algorithm> #include <vector> int main() { std::vector<int> abc{1,2,3}; return *std::max_element(abc.begin(), abc.end()); }