Answers for "string format decimal places c++"

C++
0

string format decimal places c++

//%f 	// placeholder for a float value
//%.2f 	//as a placeholder, your float will be written rounded to 2 decimal places
		// if you require a truncated representation, consider
		// integer division or std::trunc() from <math.h> or <cmath>

// example string:
printf("Your total is $%.2f", 30.999);
//output:
//Your total is $31.00
Posted by: Guest on January-17-2022

Code answers related to "string format decimal places c++"

Browse Popular Code Answers by Language