以下程序的输出结果是( )。 struct HAR { int x, y; struct HAR *p;} h[2]; main(){ h[0].x=1; h[0].y=2; h[1].x=3; h[1].y=4; h[0].p=&h[1]; h[1].p=h; printf("%d %d\n",(h[0].p)->x,(h[1].p)->y); }
以下程序的输出结果是( )。 struct HAR { int x, y; struct HAR *p;} h[2]; main(){ h[0].x=1; h[0].y=2; h[1].x=3; h[1].y=4; h[0].p=&h[1]; h[1].p=h; printf("%d %d\n",(h[0].p)->x,(h[1].p)->y); }
羊的齿式为 A: 2(0 0 3 0/ 4 0 3 0)=20 B: 2(0 0 3 3/ 4 0 3 3)=32 C: 2(4 0 3 0/ 4 0 3 0)=28 D: 2(4 0 3 3/ 4 0 3 3)=40
羊的齿式为 A: 2(0 0 3 0/ 4 0 3 0)=20 B: 2(0 0 3 3/ 4 0 3 3)=32 C: 2(4 0 3 0/ 4 0 3 0)=28 D: 2(4 0 3 3/ 4 0 3 3)=40
设 f(k)=δ(k)+2δ(k-1)-δ(k-3),h(k)=2δ(k+1)+2δ(k-1),若y(k)=f(k)*h(k),则 y(1)= A: 0 B: 4 C: 4δ(k) D: 2
设 f(k)=δ(k)+2δ(k-1)-δ(k-3),h(k)=2δ(k+1)+2δ(k-1),若y(k)=f(k)*h(k),则 y(1)= A: 0 B: 4 C: 4δ(k) D: 2
设\(D = \left\{ {(x,y)\left| { { x^2} + {y^2} \le 4,x \ge 0,y \ge 0} \right.} \right\}\),则\(\int\!\!\!\int\limits_D {(x + y)} d\sigma = \) A: \(0\) B: \( { { 8} \over 3}\) C: \( { { 16} \over 3}\) D: \( { { 32} \over 3}\)
设\(D = \left\{ {(x,y)\left| { { x^2} + {y^2} \le 4,x \ge 0,y \ge 0} \right.} \right\}\),则\(\int\!\!\!\int\limits_D {(x + y)} d\sigma = \) A: \(0\) B: \( { { 8} \over 3}\) C: \( { { 16} \over 3}\) D: \( { { 32} \over 3}\)
下面哪段语句不会报错? A: x = ones(1,4);nh = 0:2;h = (nh+1)* ones(1,3);n=0:5;y=conv(x,h);stem(n,y); B: x = [1 2 3];h = ones(1,5);n=0:7;y=conv(x,h);stem(n,y); C: x = ones(1,5);nh = 0:2;h = (nh+1).* ones(1,3);n=0:6;y=conv(x,h);stem(n,y);
下面哪段语句不会报错? A: x = ones(1,4);nh = 0:2;h = (nh+1)* ones(1,3);n=0:5;y=conv(x,h);stem(n,y); B: x = [1 2 3];h = ones(1,5);n=0:7;y=conv(x,h);stem(n,y); C: x = ones(1,5);nh = 0:2;h = (nh+1).* ones(1,3);n=0:6;y=conv(x,h);stem(n,y);
下面哪段语句不会报错? A: x = [1 2 3];h = ones(1,5);n=0:7;y=conv(x,h);stem(n,y); B: x = ones(1,4);nh =0:2;h = (nh+1) ones(1,3);n=0:5;y=conv(x,h);stem(n,y); C: x = ones(1,5);nh =0:2;h = (nh+1). ones(1,3);n=0:6;y=conv(x,h);stem(n,y);
下面哪段语句不会报错? A: x = [1 2 3];h = ones(1,5);n=0:7;y=conv(x,h);stem(n,y); B: x = ones(1,4);nh =0:2;h = (nh+1) ones(1,3);n=0:5;y=conv(x,h);stem(n,y); C: x = ones(1,5);nh =0:2;h = (nh+1). ones(1,3);n=0:6;y=conv(x,h);stem(n,y);
下列方程中( )是微分方程。 A: \( x{y^3} + 2{y^2} + {x^2}y = 0 \) B: \( {y^2} + xy - y = 0 \) C: \( x + {y^2} = 0 \) D: \( dy + ydx = 0 \)
下列方程中( )是微分方程。 A: \( x{y^3} + 2{y^2} + {x^2}y = 0 \) B: \( {y^2} + xy - y = 0 \) C: \( x + {y^2} = 0 \) D: \( dy + ydx = 0 \)
【单选题】分段函数: ,下面程序段中正确的是__________。 A. If x < 0 Then y = 0 If x < 1 Then y = 1 If x < 2 Then y = 2 If x >= 2 Then y = 3 B. If x >= 2 Then y = 3 If x >= 1 Then y = 2 If x > 0 Then y = 1 If x < 0 Then y = 0 C. If x < 0 Then y = 0 ElseIf x > 0 Then y = 1 ElseIf x > 1 Then y = 2 Else y = 3 End If D. If x > =2 Then y = 3 ElseIf x > =1 Then y = 2 ElseIf x > =0 Then y = 1 Else y = 0 End If
【单选题】分段函数: ,下面程序段中正确的是__________。 A. If x < 0 Then y = 0 If x < 1 Then y = 1 If x < 2 Then y = 2 If x >= 2 Then y = 3 B. If x >= 2 Then y = 3 If x >= 1 Then y = 2 If x > 0 Then y = 1 If x < 0 Then y = 0 C. If x < 0 Then y = 0 ElseIf x > 0 Then y = 1 ElseIf x > 1 Then y = 2 Else y = 3 End If D. If x > =2 Then y = 3 ElseIf x > =1 Then y = 2 ElseIf x > =0 Then y = 1 Else y = 0 End If
下面程序段中正确的是( )。 A: If x<0 Then y=0 If x<1 Then y=1 If x<2 Then y=2 If x>=2 Then y=3 B: If x>=2 Then y=3 If x>1 Then y=2 If x>=0Then y=1 If x>0 Then y=0 C: If x<0 Then y=0 Else If>=0Then y=1 Else y=3 End If D: If x>=2 Then y=3 Else If>=1 Then y=2 Else y=0 End If
下面程序段中正确的是( )。 A: If x<0 Then y=0 If x<1 Then y=1 If x<2 Then y=2 If x>=2 Then y=3 B: If x>=2 Then y=3 If x>1 Then y=2 If x>=0Then y=1 If x>0 Then y=0 C: If x<0 Then y=0 Else If>=0Then y=1 Else y=3 End If D: If x>=2 Then y=3 Else If>=1 Then y=2 Else y=0 End If
求下列微分方程的通解:(1)y〞-2yˊ=0;(2)y〞-3yˊ+2y=0;(3)y〞+4y=0;(4)y〞-4yˊ+5y=0;(5)y〞-6yˊ+9y=0;(6)y〞+2yˊ+ay=0;(7)y〞+6y〞+10yˊ=0;(8)y(4)-2y〞+y=0;(9)y(4)+2y〞+y=0;(10)y(4)+3y〞-4y=0.
求下列微分方程的通解:(1)y〞-2yˊ=0;(2)y〞-3yˊ+2y=0;(3)y〞+4y=0;(4)y〞-4yˊ+5y=0;(5)y〞-6yˊ+9y=0;(6)y〞+2yˊ+ay=0;(7)y〞+6y〞+10yˊ=0;(8)y(4)-2y〞+y=0;(9)y(4)+2y〞+y=0;(10)y(4)+3y〞-4y=0.