vote up 2 vote down star

"%11.2lf" of C++ is equivalent to ?

You guys have any resource that shows the equivalent formats for both Java and C++?

flag
2  
java.sun.com/j2se/1.5.0/… – Aviator Oct 9 at 19:33
1  
%[argument_index$][flags][width][.precision]conversion says everything :) – Emktas Oct 9 at 20:54

3 Answers

vote up 2 vote down

C++ cpplusplus.com or MSDN

Java Sun javadocs

link|flag
vote up 0 vote down

Boost Format. http://www.boost.org/doc/libs/1%5F37%5F0/libs/format/doc/format.html#syntax

It has the basically the same formatters as printf().
But they are type safe and can be used on streams.

link|flag
I think the OP is looking for the equivalent in Java. – finnw Oct 10 at 0:06
vote up 1 vote down

Short answer: The Java equivalent is "%11.2f".

In C's printf() (but not scanf()), %f and %lf are equivalent; Both take a double argument.

In Java's Formatter.format(), %f is legal but %lf is not. %f works for Float, Double and BigDecimal values.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.