Is there a way to do this without using the stream? For example, something like this:
double a = 6.352356663353535;
double b = a.precision(5);
instead of:
double a = 6.352356663353535;
std::cout.precision(5);
std::cout << a << std::endl;
I am new to C++ and I am curious. Thanks, in advance.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…