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?
第1题:
有下列程序段 public class fun { public static void main(String args[]) { char b[] = "Hello,you"; b[5] = 0; System.out.println(s); } 执行此程序后,得到的输出结果是( )。
A.Hello,you
B.Hello0you
C.Hello
D.0
第2题:
假设从键盘输入字符串Smith,以下程序的运行结果是()。 name=input() print("Hello,%s!"%name)
A.Hello,%s!
B.Hello,name!
C.Hello,Smith
D.Hello,Smith!
第3题:
下列定义的字符串,错误的是
A.s ='hello'
B.s = '''hello'''
C.s = "hello"
D.s = ""hello""
第4题:
A.c=c+i;
B. s+=i;
C. i+=s;
D. c+=s;
第5题:
写出以下程序的运行结果: 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; }