, 1.0 )

Author:


{filelink=6031}


public class ExamplesPrintf {
  public static void main(String[] args) {
    System.out.printf("1.0 5f Nouveau Format %5f", 1.0 );
    System.out.printf("1.0 4f Nouveau Format %4f", 1.0 );

  }

}
/*
1.0 5f Nouveau Format 1.000000
1.0 4f Nouveau Format 1.000000

 */

Leave a Reply

Your email address will not be published. Required fields are marked *