I've read a few other answers on different posts about people having specific problems with line formatting, but have not found anything that has helped enough to solve my problem. I've also looked at the java docs and nothing I have done seems to work.
The last line of code is the one I'm trying to format. I ideally want to format it with 3 decimal precision output.
Double hi = 32.22;
System.out.println("The sqrt. is = " + Math.sqrt(hi));
System.out.printf("The Sqrt Rounded Down Is: " + "/%.3d", Math.floor(Math.sqrt(hi)));
is anything wrong with me "/%.3d", or is it something else? I don't quite fully understand/remember all the formatting options.
Try this: