FINDNTH(‘HELLO’,’L’,2),返回()。
举一反三
- String s=new String(“hello”); String t =new String(“hello”); char c [ ] ={‘h’,’e’,’l’,’l’,’o’}; 下列哪些表达式返回true ?
- String s=new String(“hello”);String t =new String(“hello”);char c [ ] ={‘h’,’e’,’l’,’l’,’o’};下列哪些表达式返回true ? A: s.equals(t); B: t.equals(c); C: s= =t ; D: t.equals (new String(“hello”));
- 以下选项中描述错误的是()。 A: 如果x是序列s的元素,x<br/>in s 返回True B: 如果m=[30,'hello<br/>python',45], m[3]返回45 C: 如果m=[30,'hello<br/>python',45], m[0:2]返回[30,'hello<br/>python'] D: 如果m=[30,'hello<br/>python',45], m[-1]返回45
- 给出下列的程序段,则哪个选项返回true ( ) String s="hello"; String t="hello"; char c[]={'h','e','l','l','o'}; A: equals(; B: Lequals(; C: s==t; D: t==c;
- 给出下面的代码String s= "hello";String t = "hello";char c[] = {'h','e','l','l','o'};下列选项里,哪些返回true? [] A: s.equals(t); B: t.equals(c); C: s==t; D: t.equals(new String("hello")); E: t==c;