Choose the correct result of compiling and running following code:
import java.util.Formatter;
public class Format2 {
public static void main(String[] args) {
String s = "hello123";
Formatter f = new Formatter();
f.format("%S", s);
System.out.println(f);
}
}
Войдите чтобы поставить Нравится
Войдите чтобы прокомментировать