Algorithm/TIP
[c++] 3개 이상의 값의 max구하기
IagreeBUT
2022. 8. 31. 23:22
728x90
#include <algorithm>
int m = max({a,b,c});
값을 여기 안에 넣어주는게 핵심{}
728x90