본문 바로가기

Algorithm/Tips

[C/C++]0.5 더하여 반올림하기


  Explanation

0.5를 더하면 float가 되고, 값을 int형 변수에 넣어주면 int로 자동 다운 캐스팅되며 반올림이 일어난다.

  Code