Write code to pad String from Right using String.format()
//package com.book2s; public class Main { public static void main(String[] argv) { String s = "book2s.com"; int n = 42; System.out.println(padRight(s, n)); }//from www . ja va 2s.c o m public static String padRight(String s, int n) { return String.format("%1$-" + n + "s", s); } }