• 2022-06-15 问题

    若有int x,y,z;,则执行以下程序段后的输出结果为:x=1;y=3;z=5;if(x>;y)x=y;y=z;printf("x=%d,y=%d,z=%d",x,y,z); A: x=1,y=5,z=5 B: x=1,y=3,z=3 C: x=5,y=3,z=5 D: x=5,y=3,z=3

    若有int x,y,z;,则执行以下程序段后的输出结果为:x=1;y=3;z=5;if(x>;y)x=y;y=z;printf("x=%d,y=%d,z=%d",x,y,z); A: x=1,y=5,z=5 B: x=1,y=3,z=3 C: x=5,y=3,z=5 D: x=5,y=3,z=3

  • 2022-05-28 问题

    1, 1, (), 2, 16/5, 16/3 A: 8/2 B: 4/3 C: 16/7 D: 2

    1, 1, (), 2, 16/5, 16/3 A: 8/2 B: 4/3 C: 16/7 D: 2

  • 2022-06-12 问题

    intx=5,y=8,z=7;表达式z=!(x>y)||(x=1,y=3)计算后的结果 A: x=1,y=3,z=1 B: x=1,y=3,z=0 C: x=5,y=8,z=0 D: x=5,y=8,z=1

    intx=5,y=8,z=7;表达式z=!(x>y)||(x=1,y=3)计算后的结果 A: x=1,y=3,z=1 B: x=1,y=3,z=0 C: x=5,y=8,z=0 D: x=5,y=8,z=1

  • 2022-06-05 问题

    一空间曲线由参数方程x=t y=sin(2t) , -3<t<3z=cos(3t*t)表示,绘制这段曲线可以由下列哪组语句完成。 A: t=-3:0.1:3;x=t;y=sin(2*t);z=cos(3*t.*t);plot3(x, y, z, t) B: t=-3:0.1:3;x=t;y=sin(2*t);z=cos(3*t*t);plot3(x, y, z) C: t=-3:0.1:3;y=sin(2*t);z=cos(3*t.*t);plot3(x, y, z) D: t=-3:0.1:3;x=t;y=sin(2*t);z=cos(3*t.*t);plot3(x, y, z) E: x=-3:0.1:3;y=sin(2*x);z=cos(3*x.*x);plot3(x, y, z)

    一空间曲线由参数方程x=t y=sin(2t) , -3<t<3z=cos(3t*t)表示,绘制这段曲线可以由下列哪组语句完成。 A: t=-3:0.1:3;x=t;y=sin(2*t);z=cos(3*t.*t);plot3(x, y, z, t) B: t=-3:0.1:3;x=t;y=sin(2*t);z=cos(3*t*t);plot3(x, y, z) C: t=-3:0.1:3;y=sin(2*t);z=cos(3*t.*t);plot3(x, y, z) D: t=-3:0.1:3;x=t;y=sin(2*t);z=cos(3*t.*t);plot3(x, y, z) E: x=-3:0.1:3;y=sin(2*x);z=cos(3*x.*x);plot3(x, y, z)

  • 2022-10-24 问题

    (1)工作任劳任怨 (2)受到表彰(3)步入社会 (4)大学毕业 (5)成为劳模正确选项为( ) A: 4—1—3—5—2 B: 3—4—5—1—2 C: 4—3—l—5—2 D: 3—4—5—2—l

    (1)工作任劳任怨 (2)受到表彰(3)步入社会 (4)大学毕业 (5)成为劳模正确选项为( ) A: 4—1—3—5—2 B: 3—4—5—1—2 C: 4—3—l—5—2 D: 3—4—5—2—l

  • 2022-05-28 问题

    下面程序的输出结果是( )。L=&#91;('b', 3), ('c', 1), ('d', 2), ('a', 5)&#93;L.sort()print(L) A: [('b', 3), ('c', 1), ('d', 2), ('a', 5)] B: [('c', 1), ('d', 2), ('b', 3), ('a', 5)] C: [('a', 5), ('b', 3), ('c', 1), ('d', 2)] D: {('a', 5), ('b', 3), ('c', 1), ('d', 2)}

    下面程序的输出结果是( )。L=&#91;('b', 3), ('c', 1), ('d', 2), ('a', 5)&#93;L.sort()print(L) A: [('b', 3), ('c', 1), ('d', 2), ('a', 5)] B: [('c', 1), ('d', 2), ('b', 3), ('a', 5)] C: [('a', 5), ('b', 3), ('c', 1), ('d', 2)] D: {('a', 5), ('b', 3), ('c', 1), ('d', 2)}

  • 2022-06-05 问题

    下面程序的输出结果是‪‪‪‪‪‪‫‪( )。L=&#91;('b', 3), ('c', 1), ('d', 2), ('a', 5)&#93;L.sort()print(L)‪‪‪‪‪‪‪‪‪‪‪‪‪‪‪‪‪‪ A: {('a', 5), ('b', 3), ('c', 1), ('d', 2)} B: [('b', 3), ('c', 1), ('d', 2), ('a', 5)] C: [('c', 1), ('d', 2), ('b', 3), ('a', 5)] D: [('a', 5), ('b', 3), ('c', 1), ('d', 2)]

    下面程序的输出结果是‪‪‪‪‪‪‫‪( )。L=&#91;('b', 3), ('c', 1), ('d', 2), ('a', 5)&#93;L.sort()print(L)‪‪‪‪‪‪‪‪‪‪‪‪‪‪‪‪‪‪ A: {('a', 5), ('b', 3), ('c', 1), ('d', 2)} B: [('b', 3), ('c', 1), ('d', 2), ('a', 5)] C: [('c', 1), ('d', 2), ('b', 3), ('a', 5)] D: [('a', 5), ('b', 3), ('c', 1), ('d', 2)]

  • 2022-10-29 问题

    以下程序的执行结果是。 L = &#91;1, 3, 5, 7, 9&#93; print(L.pop(-3), end = ) print(L.remove(L&#91;0&#93;), end = ) print(L) A: 5 1 [3, 7, 9] B: 5 1 [1, 3, 7, 9] C: 5 None [3, 7, 9] D: 5 None [1, 3, 7, 9]

    以下程序的执行结果是。 L = &#91;1, 3, 5, 7, 9&#93; print(L.pop(-3), end = ) print(L.remove(L&#91;0&#93;), end = ) print(L) A: 5 1 [3, 7, 9] B: 5 1 [1, 3, 7, 9] C: 5 None [3, 7, 9] D: 5 None [1, 3, 7, 9]

  • 2022-06-30 问题

    均匀平面波从空气垂直入射到理想介质面(εr=2.25,μr=1,σ=0),则电场反射系数和折射系数分别为( )。 A: R=-1/5,T=4/5 B: R=-3/5,T=2/5 C: R=-1/3,T=2/3 D: R=-2/3,T=1/3

    均匀平面波从空气垂直入射到理想介质面(εr=2.25,μr=1,σ=0),则电场反射系数和折射系数分别为( )。 A: R=-1/5,T=4/5 B: R=-3/5,T=2/5 C: R=-1/3,T=2/3 D: R=-2/3,T=1/3

  • 2021-04-14 问题

    一空间曲线由参数方程x=ty=sin(2t) , -3&lt;t&lt;3z=cos(3t*t)表示,绘制这段曲线可以由下列哪组语句完成。? t=-3:0.1:3;x=t;y=sin (2*t);z=cos (3*t.*t);plot3(x, y, z)|t=-3:0.1:3;x=t;y=sin (2*t);z=cos (3*t*t);plot3(x, y, z)|t=-3:0.1:3;y=sin (2*t);z=cos (3*t.*t);plot3 (x, y, z)|t=-3:0.1:3;x=t;y=sin (2*t);z=cos (3*t.*t);plot3(x, y, z, t)

    一空间曲线由参数方程x=ty=sin(2t) , -3&lt;t&lt;3z=cos(3t*t)表示,绘制这段曲线可以由下列哪组语句完成。? t=-3:0.1:3;x=t;y=sin (2*t);z=cos (3*t.*t);plot3(x, y, z)|t=-3:0.1:3;x=t;y=sin (2*t);z=cos (3*t*t);plot3(x, y, z)|t=-3:0.1:3;y=sin (2*t);z=cos (3*t.*t);plot3 (x, y, z)|t=-3:0.1:3;x=t;y=sin (2*t);z=cos (3*t.*t);plot3(x, y, z, t)

  • 1 2 3 4 5 6 7 8 9 10