• 2021-04-14 问题

    #include #include void main() { int A,B,C,D; double m,x,y; scanf("%d",A||B||C||D); if(m=A||M=B||m=C); x=0; y=0; printf("x=%d,y=%d",x,y); } else if(m=D) { for(x=0;x>=150;60); y=x/60; printf("y=%d;x,y"); }

    #include #include void main() { int A,B,C,D; double m,x,y; scanf("%d",A||B||C||D); if(m=A||M=B||m=C); x=0; y=0; printf("x=%d,y=%d",x,y); } else if(m=D) { for(x=0;x>=150;60); y=x/60; printf("y=%d;x,y"); }

  • 2021-04-14 问题

    以下程序的输出结果是( ). struct st { int x;int *y;}*p; int dt[4]={10,20,30,40}; struct st aa[4]={50,&dt[0],60,&dt[0],60,&dt[0],60,&dt[0],}; main( ) { p=aa; printf("%d\n",++(p->x)); }

    以下程序的输出结果是( ). struct st { int x;int *y;}*p; int dt[4]={10,20,30,40}; struct st aa[4]={50,&dt[0],60,&dt[0],60,&dt[0],60,&dt[0],}; main( ) { p=aa; printf("%d\n",++(p->x)); }

  • 2022-06-06 问题

    若有定义语句:int a=80,x=60,则关系表达式a==x>0的运算结果为

    若有定义语句:int a=80,x=60,则关系表达式a==x>0的运算结果为

  • 2021-04-14 问题

    以下程序的输出是()。structst{intx;int*y;}*p;intdt[4]={10,20,30,40};structstaa[4]={50,&dt[0],60,&dt[0],60,&dt[0],60,&dt[0]};main(){p=aa;  printf("%d\n",++(p->x));  }? 60|10|11|51

    以下程序的输出是()。structst{intx;int*y;}*p;intdt[4]={10,20,30,40};structstaa[4]={50,&dt[0],60,&dt[0],60,&dt[0],60,&dt[0]};main(){p=aa;  printf("%d\n",++(p->x));  }? 60|10|11|51

  • 2022-06-19 问题

    定时器T1用做计数方式,采用工作方式2时,TMOD的值( )。 A: 0x60 B: 0型 C: 0x06 D: 0x20

    定时器T1用做计数方式,采用工作方式2时,TMOD的值( )。 A: 0x60 B: 0型 C: 0x06 D: 0x20

  • 2022-05-27 问题

    What will be the values of ans, x, and y after the following statements are executed?执行以下语句后,ans,x和y的值是什么?int ans = 35, x = 50, y =50;if ( x >;= y){ans = x + 10;x -=y;} else {ans = y + 10;y += x;} A: ans = 60, x = 50, y =100 B: ans = 60, x =0, y =50 C: ans = 45, x = 50, y = 0 D: ans = 45, x = 50, y = 50

    What will be the values of ans, x, and y after the following statements are executed?执行以下语句后,ans,x和y的值是什么?int ans = 35, x = 50, y =50;if ( x >;= y){ans = x + 10;x -=y;} else {ans = y + 10;y += x;} A: ans = 60, x = 50, y =100 B: ans = 60, x =0, y =50 C: ans = 45, x = 50, y = 0 D: ans = 45, x = 50, y = 50

  • 2022-06-09 问题

    turtle完成初始化绘图窗体后,绘图笔位于绘图窗体坐标点(x,y)=(0,0)。则执行下列语句后:turtle.fd(100)turtle.seth(60)turtle.fd(100)turtle.seth(-60)turtle.backward(100)turtle.seth(-120)turtle.fd(100)turtle.seth(-60)turtle.fd(100)绘图笔位于绘图窗体坐标点(x,y)=()。 A: (100,100) B: (100, 0) C: (0, 100) D: (0, 0)

    turtle完成初始化绘图窗体后,绘图笔位于绘图窗体坐标点(x,y)=(0,0)。则执行下列语句后:turtle.fd(100)turtle.seth(60)turtle.fd(100)turtle.seth(-60)turtle.backward(100)turtle.seth(-120)turtle.fd(100)turtle.seth(-60)turtle.fd(100)绘图笔位于绘图窗体坐标点(x,y)=()。 A: (100,100) B: (100, 0) C: (0, 100) D: (0, 0)

  • 2022-06-02 问题

    选择正确的IPv6地址的表示() A: 12AB::CD30::/60 B: 12AB:0:0:GD30:0:0:0:0/60 C: 12AB::CD30:0:0:0:0/60 D: 12AB:0:0:CD30::/60

    选择正确的IPv6地址的表示() A: 12AB::CD30::/60 B: 12AB:0:0:GD30:0:0:0:0/60 C: 12AB::CD30:0:0:0:0/60 D: 12AB:0:0:CD30::/60

  • 2021-04-14 问题

    【单选题】与“y=(x>0?x:x<0?-x:0);”的功能相同的if语句是______。 A. if(x>0) y=x; else if(x<0) y=-x; else y=0; B. if(x) if(x>0) y=x; else if(x<0) y=-x; else y=0; C. y=-x; if(x) if(x>0) y=x; else if(x==0) y=0; else y=-x; D. y=0; if(x>=0) if(x>0) y=x; else  y=-x;

    【单选题】与“y=(x>0?x:x<0?-x:0);”的功能相同的if语句是______。 A. if(x>0) y=x; else if(x<0) y=-x; else y=0; B. if(x) if(x>0) y=x; else if(x<0) y=-x; else y=0; C. y=-x; if(x) if(x>0) y=x; else if(x==0) y=0; else y=-x; D. y=0; if(x>=0) if(x>0) y=x; else  y=-x;

  • 2022-06-28 问题

    设置T0为工作方式1,定时功能,GATE=0;T1为工作方式2,计数功能,GATE=0。TMOD应赋值( ) A: 0x20 B: 0x60 C: 0x21 D: 0x61

    设置T0为工作方式1,定时功能,GATE=0;T1为工作方式2,计数功能,GATE=0。TMOD应赋值( ) A: 0x20 B: 0x60 C: 0x21 D: 0x61

  • 1 2 3 4 5 6 7 8 9 10