C++ round()

1 개요[ | ]

C++ round()
#include <iostream>
#include <cmath>
using namespace std;
int main() {
    cout << round(3.14159) << endl; // 3
}
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
    cout << setprecision(3) << 3.14159 << endl; // 3.14
    cout << setprecision(5) << 123.56789 << endl; // 123.57
}

2 같이 보기[ | ]

3 참고[ | ]

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