______thisway,oneof_____thefavoritedrinkswasinvented.
A: In;world’s
B: By;world’sCOn!WorldD,To;world
A: In;world’s
B: By;world’sCOn!WorldD,To;world
举一反三
- 以下程序段的输出结果是 。Char s[ ]=”Hello World!”;Strlwr(s);Printf(“%s”,s); A: hello world! B: HELLO world! C: hello WORLD! D: HELLO WORLD!
- for s in "hello world": A: hello world B: world C: hello D: helloworld
- 下列选项中,()是正确的JSP表达式。 A: <;% String s="hello world";%>; B: <;%=hello world";>; C: <;%="hello world"%>; D: <;%!"hello world"%>;
- 8、下列选项中,()是正确的表达式。 A: <;% String s="hello world"; %>; B: <;%="hello world"; %>; C: <;% ="hello world" %>; D: <;%! "hello world" %>;
- 以下要输出“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);