"C++ floor()"의 두 판 사이의 차이

(새 문서: ==개요== ;C++ floor() <source lang='cpp'> #include <iostream> #include <cmath> using namespace std; int main() { cout << floor(3.14159) << endl; // 3 cout << floor(-3.14159) <<...)
 
37번째 줄: 37번째 줄:
* [[C++ round()]]
* [[C++ round()]]
* [[C++ ceil()]]
* [[C++ ceil()]]
* [[C언어 floor()]]
* [[함수 floor()]]
* [[함수 floor()]]



2019년 3월 16일 (토) 14:14 판

1 개요

C++ floor()
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
  cout << floor(3.14159) << endl; // 3
  cout << floor(-3.14159) << endl; // -4
  cout << floor(9.98) << endl; // 9
}
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
  cout << floor(3.14159) << endl; // 3
  cout << floor(-3.14159) << endl; // -4
  cout << floor(9.98) << endl; // 9
}
#include <iostream>
int main() {
    float f = 123.456;
    float res = (int)(f*100.0)/100.0;
    std::cout << res << std::endl;
    // 123.45
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}