본문 바로가기

Algorithm/TIP

[c++] 3개 이상의 값의 max구하기

728x90
#include <algorithm>


int m = max({a,b,c});

 

값을 여기 안에 넣어주는게 핵심{}

728x90