• 2021-04-14 问题

    根据x的正、负、零的情况把s赋值为+1、-1、0,写作:if(x>0)s=1;elseif(x<0)s=-1;________s=0;

    根据x的正、负、零的情况把s赋值为+1、-1、0,写作:if(x>0)s=1;elseif(x<0)s=-1;________s=0;

  • 2022-06-07 问题

    \( \lim \limits_{x \to 0} { { x - \sin x} \over { { x^3}}} \)=( ) A: 0 B: 1 C: 6 D: \( {1 \over 6} \)

    \( \lim \limits_{x \to 0} { { x - \sin x} \over { { x^3}}} \)=( ) A: 0 B: 1 C: 6 D: \( {1 \over 6} \)

  • 2022-07-01 问题

    int x = 1, y =6;  A:  x = 6 y = 0 B:  x = 7 y = 0 C:  x = 6 y = -1 D:  x = 7 y = -1 E:  Compilation fails.

    int x = 1, y =6;  A:  x = 6 y = 0 B:  x = 7 y = 0 C:  x = 6 y = -1 D:  x = 7 y = -1 E:  Compilation fails.

  • 2022-05-27 问题

    下列程序段可以正确运行的有: A: int i,s,x;s=0;i=0;while(1){ scanf("%d",&amp;x); if(x!=-1) { s=s+x; i++; } else break;}printf("ave=%d\n",s/i); B: int i,s,x;s=0;i=0;scanf("%d",&amp;x);while(x!=-1){ s=s+x; i++; scanf("%d",&amp;x);}printf("ave=%d\n",s/i); C: int i,s,x;s=0;i=0;while(1){ scanf("%d",&amp;x); if(x==-1) break; s=s+x; i++; }printf("ave=%d\n",s/i);

    下列程序段可以正确运行的有: A: int i,s,x;s=0;i=0;while(1){ scanf("%d",&amp;x); if(x!=-1) { s=s+x; i++; } else break;}printf("ave=%d\n",s/i); B: int i,s,x;s=0;i=0;scanf("%d",&amp;x);while(x!=-1){ s=s+x; i++; scanf("%d",&amp;x);}printf("ave=%d\n",s/i); C: int i,s,x;s=0;i=0;while(1){ scanf("%d",&amp;x); if(x==-1) break; s=s+x; i++; }printf("ave=%d\n",s/i);

  • 2022-07-28 问题

    对于同步RS触发器,若要求其输出“1”状态不变,则输入的RS信号应为() A: R=0,S=0 B: R=0,S=1 C: R=1,S=0 D: R=X,S=X

    对于同步RS触发器,若要求其输出“1”状态不变,则输入的RS信号应为() A: R=0,S=0 B: R=0,S=1 C: R=1,S=0 D: R=X,S=X

  • 2022-07-28 问题

    对于同步RS触发器,若要求其输出“1”状态不变,则输入的RS信号应为() A: AR=0,S=0 B: BR=0,S=1 C: CR=1,S=0 D: DR=X,S=X

    对于同步RS触发器,若要求其输出“1”状态不变,则输入的RS信号应为() A: AR=0,S=0 B: BR=0,S=1 C: CR=1,S=0 D: DR=X,S=X

  • 2022-05-26 问题

    如上图所示实例,以下测试用例哪一组不能够满足判定覆盖________。 A: (a=2,b=0,x=6)、(a=1,b=0,x=1) B: (a=2,b=0,x=4)、(a=3,b=0,x=2) C: (a=2,b=2,x=2)、(a=3,b=0,x=6) D: (a=2,b=0,x=6)、(a=2,b=0,x=4)

    如上图所示实例,以下测试用例哪一组不能够满足判定覆盖________。 A: (a=2,b=0,x=6)、(a=1,b=0,x=1) B: (a=2,b=0,x=4)、(a=3,b=0,x=2) C: (a=2,b=2,x=2)、(a=3,b=0,x=6) D: (a=2,b=0,x=6)、(a=2,b=0,x=4)

  • 2022-06-19 问题

    下列语句与y=(x>;0?1:x<;0?-1:0);语句功能相同是( ) A: if (x) if(x>;0) y=1; else if(x<;0) y=-1;else y=0; B: y=-1; if(x>;0) y=1; else y=-1; C: if (x>;0) y=1; else if(x<;0) y=-1; else y=0; D: y=0; if(x>;=0) y=1;else if(x==0) y=0; else y=-1;

    下列语句与y=(x>;0?1:x<;0?-1:0);语句功能相同是( ) A: if (x) if(x>;0) y=1; else if(x<;0) y=-1;else y=0; B: y=-1; if(x>;0) y=1; else y=-1; C: if (x>;0) y=1; else if(x<;0) y=-1; else y=0; D: y=0; if(x>;=0) y=1;else if(x==0) y=0; else y=-1;

  • 2021-04-14 问题

    已知char s[6]={'1','2','3','\0','4','\0'}; ,则printf("%s",s)的输出结果是______

    已知char s[6]={'1','2','3','\0','4','\0'}; ,则printf("%s",s)的输出结果是______

  • 2022-07-26 问题

    17da555a3275fb2.png,计算极限的实验命令为(). A: limit((x-sin(x))/x^3,x,0)ans =1/2 B: syms x; limit((x-sin(x))/(x.^3),x,0)ans =1/6 C: syms x; limit(x-sinx)/x^3,x,0)ans =1/6

    17da555a3275fb2.png,计算极限的实验命令为(). A: limit((x-sin(x))/x^3,x,0)ans =1/2 B: syms x; limit((x-sin(x))/(x.^3),x,0)ans =1/6 C: syms x; limit(x-sinx)/x^3,x,0)ans =1/6

  • 1 2 3 4 5 6 7 8 9 10