Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,970 questions

51,912 answers

573 users

How to round a float to N decimals in C++

4 Answers

0 votes
#include <iostream>
#include <iomanip>

int main() {
    float number = 82.79521;
 
    std::cout << std::fixed << std::setprecision(2) << number;
}




/*
run:

82.80

*/

 



answered Jul 29, 2022 by avibootz
0 votes
#include <iostream>
#include <iomanip>

int main() {
    float number = 82.73521;
 
    std::cout << std::fixed << std::setprecision(2) << number;
}




/*
run:

82.74

*/

 



answered Jul 29, 2022 by avibootz
0 votes
#include <iostream>
#include <iomanip>

int main() {
    float number = 82.73165;
 
    std::cout << std::fixed << std::setprecision(2) << number;
}




/*
run:

82.73

*/

 



answered Jul 29, 2022 by avibootz
0 votes
#include <iostream>
#include <cmath>

float round_float(float number, unsigned char decimals) {
    float pow_10 = pow(10.0f, (float)decimals);
    
    return round(number * pow_10) / pow_10;
}

int main() {
    float number = 82.73165;
 
    std::cout << round_float(number, 3);
}




/*
run:

82.732

*/

 



answered Jul 29, 2022 by avibootz

Related questions

3 answers 140 views
140 views asked Jul 29, 2022 by avibootz
3 answers 156 views
1 answer 127 views
2 answers 178 views
...