A:( ).B:Hi. My name's Rose. Are you from London?A. Hello, I'm Paul. What's your name?B. Hello, who are you? What's your name?C. Where are you from?
A:( ).
B:Hi. My name's Rose. Are you from London?
A. Hello, I'm Paul. What's your name?
B. Hello, who are you? What's your name?
C. Where are you from?
相关考题:
以下选项中正确的语句组是( )。A)char s[];s="HELLO!";B)char*s;s={"HELLO!"};C)char s[10];s="HELLO!";D)char *s;s="HELLO!";
有下列程序段 public class fun { public static void main(String args[]) { char b[]="Hello,you"; b[5] = 0; System.out.println(s); } 执行此程序后,得到的输出结果是( )。A.Hello, youB.Hello0youC.HelloD.0
以下选项中正确的语句组是( )。A.char s[]; s="HELLO!";B.char *s; s={"HELLO!"};C.char s[10]; s="HELLO!";D.char *s; s="HELLO!";
有下列程序段 public class fun { public static void main(String args[]) { char b[] = "Hello,you"; b[5] = 0; System.out.println(s); } 执行此程序后,得到的输出结果是( )。A.Hello,youB.Hello0youC.HelloD.0
设有如下变量char c = 'c';int i = 10;double d = 10;long l = 1;String s = "Hello";以下哪些语句编译不出错? A.c=c+i;B. s+=i;C. i+=s;D. c+=s;
假设从键盘输入字符串Smith,以下程序的运行结果是()。 name=input() print("Hello,%s!"%name)A.Hello,%s!B.Hello,name!C.Hello,SmithD.Hello,Smith!
写出以下程序的运行结果: int main() { int m,s,i; for(m=2;m<10;m++) { s=0; for(i=1;i<m;i++) if((m%i)==0) s=s+i; if(s==m) printf(“%d”,m); } return 0; }
下列定义的字符串,错误的是A.s ='hello'B.s = '''hello'''C.s = "hello"D.s = ""hello""