VisualStudio.C++.C#/C . C++
C/C++. 실수 , 올림 내림 반올림 , ceil floor round
i.got.it
2020. 5. 26. 14:18
#include <math> // for c
#include <cmath> // for c++
ceil(2.8); // 반환값 3
floor(2.8); // 반환값 2
round(2.8); // 반환값 3 . C++ 11 부터 지원됨.
round(2.4); // 반환값 2
ceil(-2.8); // 반환값 -2
floor(-2.8); 반환값 -3
round(-2.8); // 반환값 -3 . C++ 11 부터 지원됨.
round(-2.4); // 반환값 -2
round
- nearest integer value
첫 등록 : 2020.05.26
최종 수정 :
단축 주소 : https://igotit.tistory.com/2544