C++ manipulator inställd precision funktionen används för att styra antalet siffror i en utströmsvisning av ett flyttalsvärde.
Denna manipulator deklareras i rubrikfilen.
Syntax
/*unspecified*/ setprecision (int n);
Parameter
n : nytt värde för decimalprecisionen.
Returvärde
Denna funktion returnerar ett objekt av ospecificerad typ. Setbase-funktionen bör endast användas som en strömmanipulator.
Datalopp
Strömobjektet som det infogas eller extraheras på ändras och samtidig åtkomst till samma strömobjekt kan introducera datarace.
Undantag
Objektet är i ett giltigt tillstånd om något undantag görs.
Exempel 1
Låt oss se det enkla exemplet för att demonstrera användningen av setprecision:
#include // std::cout, std::fixed #include // std::setprecision using namespace std; int main () { double f =3.14159; cout << setprecision(5) << f << ' '; cout << setprecision(9) << f << ' '; cout << fixed; cout << setprecision(5) << f << ' '; cout << setprecision(9) << f << ' '; return 0; }
Produktion:
3.1416 3.14159 3.14159 3.141590000
Exempel 2
Låt oss se ett annat enkelt exempel:
#include #include #include #include using namespace std; int main() { const long double pi = acos(-1.L); cout << 'default precision (6): ' << pi << ' ' << 'setprecision(10): ' << setprecision(10) << pi << ' ' << 'max precision:' << setprecision(numeric_limits::digits10 + 1) << pi << ' '; return 0; }
Produktion:
default precision (6): 3.14159 setprecision(10): 3.141592654 max precision:3.141592653589793239
Exempel 3
Låt oss se ett annat enkelt exempel:
#include #include using namespace std; int main (void) { float a,b,c; a = 5; b = 3; c = a/b; cout << setprecision (1) << c << endl; cout << setprecision (2) << c << endl; cout << setprecision (3) << c << endl; cout << setprecision (4) << c << endl; cout << setprecision (5) << c << endl; cout << setprecision (6) << c << endl; return 0; }
Produktion:
2 1.7 1.67 1.667 1.6667 1.66667