반응형
float 대신 실제로 이기 때문에,
- <cmath> 헤더를 사용.
- roundf 함수는 float를 처리하는 함수.
- C++에서 round를 더 많이 쓰이게 됨.
#include <iostream>
#include <cmath>
int main() {
float num = 3.14;
float roundedNum = round(num);
std::cout << "Original number: " << num << std::endl;
std::cout << "Rounded number: " << roundedNum << std::endl;
return 0;
}
반응형