What is better? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is better?

1 2 3 4 5 6 #include <iomanip.h> . . . . cout<<setprecision(2)<<myFloat; or #include <math.h> . . . . myFloat=floor(myFloat*100)/100;

12th May 2020, 6:00 PM
Kadir Akdemir
Kadir Akdemir - avatar
1 Answer
+ 4
To say which way is better requires knowing more about the requirements. The first technique is better if you need to keep the original value in myFloat. The second technique is better if you no longer need the original value in myFloat and the truncated value will be useful thereafter.
12th May 2020, 9:18 PM
Brian
Brian - avatar