package PA1_Print.src.main.java;
public class StringFormat
{
public static void main(String[] args)
{
String info = String.format("Favorite Color: %s%nCurrent weight: %.1f%nFirst Initial: %c%n",
"green", 180f, "G");
System.out.print( info );
}
}
at PA1_Print.src.main.java.StringFormat.main(StringFormat.java:8)
this is usually highlighted but I’m not sure what is wrong with it