• 2022-06-05
    以下要输出“hello,world!”正确的是?
    A: String s=String.format("%1s%2s","hello","world");System.out.println(s);
    B: String s=String.format("%1$s,%2$s","hello","world");System.out.println(s);
    C: String s=String.format("%s,%s","hello","world");System.out.println(s);
    D: String s=String.format("%1s,%2s","hello","world");System.out.println(s);