单选题(6sin x) (3sin x)-(9cos x) (-2cos x) = ______.A1B-18C18D-1E18sin2x-18cos2x
单选题
(6sin x) (3sin x)-(9cos x) (-2cos x) = ______.
A
1
B
-18
C
18
D
-1
E
18sin2x-18cos2x
参考解析
解析:
(6sin x)(3sin x) - (9cos x) (-2cos x) = 18sin2x + 18cos2x= 18(sin2x + cos2x)= 18.
(6sin x)(3sin x) - (9cos x) (-2cos x) = 18sin2x + 18cos2x= 18(sin2x + cos2x)= 18.
相关考题:
已知:int x,y;double z;则以下语句中错误的函数调用是( )。A)scanf("%d,%1x,%1e",x,y,z); B)scanf("%1d*%d1f",x,y,z);C)scanf("%x%*d%o",x,y); D)scanf("%x%o%6.2f",x,y,z);
已知向量a=(3cosα,3sinα),b=(2cosβ,2sinβ),若a与b的夹角为60°,则直线与圆(X-cosβ)2+(Y-sinβ)2=1的位置关系是( )。A.相交且不过圆心B.相交且过圆心C.相切D.相离
成形铣刀铣外花键时若对刀不准,会使键侧左比键侧右高ΔX,则应使键侧左向铣刀靠拢一个距离S,则S等于()。A、ΔX/cos(180°/Z)B、ΔX/2cos(180°/Z)C、ΔX/sin(180°/Z)D、2ΔX/sin(180°/Z)
以下if语句语法正确的是()A、if(x0)x=0;elsex=1B、if(x0){x=x+y;elsex=0;}C、if(x0){x=x+y;}elsex=1;D、if(x0){x=x+y;}}else{x=0;
若p(x)是F(x)中次数大于0的不可约多项式,那么可以得到下列哪些结论?()A、只能有(p(x),f(x))=1B、只能有(p(x)C、(p(x),f(x))=1或者(p(x)D、(p(x),f(x))=1或者(p(x)
波长为λ、向右传播的某简谐波,其波源的振动方程为x=2cosπt,则传播方向上与波源相距一个波长的质点振动方程为:()A、x=2cos(πt-π)B、x=2cos(πt-2π)C、x=2cosπtD、x=2cos(πt+2π)
执行以下程序后,y的值是() main( ) { int a[]={2,4,6,8,10}; int y=1,x,*p; p=a[1]; for(x=0;x3;x++) y + = * (p + x); printf(""%d/n"",y); }A、17B、18C、19D、20
int x = 1, y =6; while (y--) { x++; } System.out.println(“x =” + x + “y =” +y); What is the result?() A、 x = 6 y = 0B、 x = 7 y = 0C、 x = 6 y = -1D、 x = 7 y = -1E、 Compilation fails.
单选题若p(x)是F(x)中次数大于0的不可约多项式,那么可以得到下列哪些结论?()A只能有(p(x),f(x))=1B只能有(p(x)C(p(x),f(x))=1或者(p(x)D(p(x),f(x))=1或者(p(x)
单选题int x = 1, y =6; while (y--) { x++; } System.out.println(“x =” + x + “y =” +y); What is the result?()A x = 6 y = 0B x = 7 y = 0C x = 6 y = -1D x = 7 y = -1E Compilation fails.
单选题public class WhileFoo { public static void main (String []args) { int x= 1, y = 6; while (y--) {x--;} system.out.printIn(“x=” + x “y =” + y); } } What is the result?()A The output is x = 6 y = 0B The output is x = 7 y = 0C The output is x = 6 y = -1D The output is x = 7 y = -1E Compilation will fail.
单选题What is the result?()A The output is X = 6 y = 0B The output is x = 7 y = 0C The output is x = 6 y = -1D The output is x = 7 y = -1E Compilation will fail.
单选题若有定义语句double x,y,*px,*py;执行了px=x;py=y;之后,输入语句正确的是( )。Ascanf("%f%f",x,y);Bscanf("%f%f"x,y);Cscanf("%1f%1e",px,py);Dscanf("%1f%1f",x,y);