int x,y,z; x=7; y=8; z=9; if(x>y) x=y; y=z; z=x; printf(“x=%d y=%d z=%d\n”,x,y,z);以上程序段的输出结果是:() A: x=7 y=8 z=9 B: x=7 y=9 z=7 C: x=8 y=9 z=7 D: x=8 y=9 z=8
int x,y,z; x=7; y=8; z=9; if(x>y) x=y; y=z; z=x; printf(“x=%d y=%d z=%d\n”,x,y,z);以上程序段的输出结果是:() A: x=7 y=8 z=9 B: x=7 y=9 z=7 C: x=8 y=9 z=7 D: x=8 y=9 z=8
已知函数定义def demo(a=1,**b):return b则demo(2,x=7,y=8,z=9)的返回值是什么? A: 2 B: (x:7,y:8,z:9) C: (7, 8, 9) D: {'x':7, 'y':8, 'z':9}
已知函数定义def demo(a=1,**b):return b则demo(2,x=7,y=8,z=9)的返回值是什么? A: 2 B: (x:7,y:8,z:9) C: (7, 8, 9) D: {'x':7, 'y':8, 'z':9}
【单选题】下面程序的运行结果是 () 。 void main() { int x=7,y=8,z=9; if(x>y) x=y,y=z; z=x; printf("x=%d y=%d z=%d ",x,y,z); } A. x=7 y=8 z=7 B. x=7 y=9 z=7 C. x=8 y=9 z=7 D. x=8 y=9 z=8
【单选题】下面程序的运行结果是 () 。 void main() { int x=7,y=8,z=9; if(x>y) x=y,y=z; z=x; printf("x=%d y=%d z=%d ",x,y,z); } A. x=7 y=8 z=7 B. x=7 y=9 z=7 C. x=8 y=9 z=7 D. x=8 y=9 z=8
【计算题】5 ×8= 6×4= 7×7= 9×5= 2×3= 9 ×2= 8×9= 7×8= 5×5= 4×3= 5+8= 6 ×6= 3×7= 4×8= 9×3= 1 ×2= 9×9= 6×8= 8×0= 4×7=
【计算题】5 ×8= 6×4= 7×7= 9×5= 2×3= 9 ×2= 8×9= 7×8= 5×5= 4×3= 5+8= 6 ×6= 3×7= 4×8= 9×3= 1 ×2= 9×9= 6×8= 8×0= 4×7=
“9、9、7、4、7、8、9、2、4、5、4”的中位数是()。
“9、9、7、4、7、8、9、2、4、5、4”的中位数是()。
ExercisesofUnit2VocabularyI.1.Fillinthegapswithwordsorphrasesgiveninthebox.Changetheformwherenecessary.1)2)3)4)5)6)7)8)9)10)11)12)2.Rewriteeachsentencewiththewordorphraseinbrackets,keepingthesamemeaning.Thefirstparthasbeenwrittenforyou.1)Whenyouare2)Wateris3)Thereisstill4)Asapersonofsimplelivinghabits,heneeds5)ItComprehensiveExercisesCloze1.Text-related1)2)3)4)5)6)7)8)9)10)11)12)2.Theme-related1)2)3)4)5)6)7)8)9)10)
ExercisesofUnit2VocabularyI.1.Fillinthegapswithwordsorphrasesgiveninthebox.Changetheformwherenecessary.1)2)3)4)5)6)7)8)9)10)11)12)2.Rewriteeachsentencewiththewordorphraseinbrackets,keepingthesamemeaning.Thefirstparthasbeenwrittenforyou.1)Whenyouare2)Wateris3)Thereisstill4)Asapersonofsimplelivinghabits,heneeds5)ItComprehensiveExercisesCloze1.Text-related1)2)3)4)5)6)7)8)9)10)11)12)2.Theme-related1)2)3)4)5)6)7)8)9)10)
(1)5 7 9 11() () ()()(2)26 23 20 17()() 8()(3)1 2 4 7 11() () 29(4)7 3 8 3 9 3()()(5)1 1 2 3 5 8()()
(1)5 7 9 11() () ()()(2)26 23 20 17()() 8()(3)1 2 4 7 11() () 29(4)7 3 8 3 9 3()()(5)1 1 2 3 5 8()()
5 3 8 12 7 5 4 5 14 6 2 9 7 8 7 13 6 9 A: 10 B: 15 C: 11 D: 17
5 3 8 12 7 5 4 5 14 6 2 9 7 8 7 13 6 9 A: 10 B: 15 C: 11 D: 17
下面语句的输出结果是?range(len('HelloWorld')) A: [1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11] B: 11 C: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] D: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
下面语句的输出结果是?range(len('HelloWorld')) A: [1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11] B: 11 C: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] D: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
【单选题】myarray1=np.arange(15) myarray2=myarray1.reshape(5,3) print( myarray1) print(myarray2) 输出值是? A. [ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15] [[ 0 1 2] [ 3 4 5] [ 6 7 8] [ 9 10 11] [12 13 14]] B. [ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15] [[ 1 2 3] [ 4 5 6] [ 7 8 9] [10 11 12] [13 14 15]] C. [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14] [[ 0 1 2] [ 3 4 5] [ 6 7 8] [ 9 10 11] [12 13 14]] D. [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14] [[ 1 2 3] [ 4 5 6] [ 7 8 9] [10 11 12] [13 14 15]]
【单选题】myarray1=np.arange(15) myarray2=myarray1.reshape(5,3) print( myarray1) print(myarray2) 输出值是? A. [ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15] [[ 0 1 2] [ 3 4 5] [ 6 7 8] [ 9 10 11] [12 13 14]] B. [ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15] [[ 1 2 3] [ 4 5 6] [ 7 8 9] [10 11 12] [13 14 15]] C. [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14] [[ 0 1 2] [ 3 4 5] [ 6 7 8] [ 9 10 11] [12 13 14]] D. [ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14] [[ 1 2 3] [ 4 5 6] [ 7 8 9] [10 11 12] [13 14 15]]