Conversation
Dashes
-
I hate Java. You'd think this would work: System.out.format("value 1: %f\n value 2: %f\n", doubleArray); Nope. You have to do it as System.out.format("value 1: %f\n value 2: %f\n", doubleArray[0], doubleArray[1]); STUPID. !coderpony
about a year ago from web-
I figured out the problem. Turns out that the System.out.format function requires the varargs to be an Object. double[] is not an object. Double[] is. !coderpony
about a year ago from web
-





