If X is normally distributed random variable with mean 50 and standard deviation 10, and Z is the standard normal random variable, then the interval shaded in the diagram below can be written as 查看更多

 

题目列表(包括答案和解析)

以下伪代码:
Read  x;
If  x≤-1  Then;
f(x)←x+2;
Else;
If-1<x≤1  Then;
f(x)←x2
Else;f(x)←-x+2;
End  If;
Print  f(x);
根据以上伪代码,若函数g(x)=f(x)-m在R上有且只有两个零点,则实数m的取值范围是
 

查看答案和解析>>

给出一个算法:
 Read    x
 If   x≤0,Then
      f(x)←4x
  Else
      f(x)←2x
  End,If
  Print,f(x)
根据以上算法,可求得f(-1)+f(2)=
0
0

查看答案和解析>>

阅读下列程序:
输入x;
if  x<0,then  y=
π
2
x+3

else if  x>0,then  y=
π
2
x-5

else  y=0;
输出 y.
如果输入x=-2,则输出结果y为(  )

查看答案和解析>>

If  x>0   Then
y=3x-1
Else
y=-2x+3
End  If
输出  y
End
若输入x=2,求输出的y=
5
5

查看答案和解析>>

已知算法(伪代码)如下,指出其功能(用算式表示)
y=
1-2x   x≤0
1        0<x≤1
2x-1    x>1
y=
1-2x   x≤0
1        0<x≤1
2x-1    x>1

Read   x
If  x≤0  Then  
  y←1-2x
Else  
If x≤1  Then
  y←1
Else y←1-2x
End If
End If
Print  y.

查看答案和解析>>


同步练习册答案