中国大学MOOC: 已知元组 t=(1,2,1,3,1,4),则执行表达式s=set(t)后,sum(s)的值为:
举一反三
- 已知元组 t=(1,2,1,3,1,4),则执行表达式s=set(t)后,sum(s)的值为: A: 12 B: 11 C: 10 D: 9
- 中国大学MOOC: 若下列程序执行后t的值为4,则执行时输入a,b的值范围是 #include ”stdio.h”main( ){ int a, b, s=1, t=1; scanf (”%d, %d”, &a, &b); if (a>0) s+=1; if (a>b) t+=s; else if(a==b) t=5; else t = 2*s; printf (”s=%d, t=%d ”, s,t); }
- s=”hello”,t=”world”,s+=t,则s为________________,s[-1]为________,s[2:5]为_____________,s[::3]为____________,s[-2::-1]为____________________
- 已知串s="www.hist.edu.cn",串t="edu",则Index(s,t,1)的值为()。 A: 3 B: 10 C: 1 D: 11
- 已知字符串s='12345',则以下值不为'5'的表达式是: A: s[4] B: s[-1] C: s[-1:-2:-1] D: s[::4]