(2013)若f(-x)=-f(x)(-∞0,f″(x)<0,则f(x)在(0,+∞)内是:()
A:f′(x)>0,f″(x)<0 B:f′(x)<0,f″(x)>0 C:f′(x)>0,f″(x)>0 D:f′(x)<0,f″(x)<0
设f(x)=f(-x),x∈(-∞,+∞),且在(0,+∞)内,f'(x)>0,f"(x)>0,则f(x)在(-∞,0)内必有
A:f'(x)>0,f'(x)>0. B:f'(x)>0,f"(x)<0. C:f'(x)<0,f"(x)<0. D:f'(x)<0,f"(x)>0.
若f(-x)=f(x)(-∞<x<+∞), 在(-∞,0)内f'(x)>0,且f"(x)<0,则在(0,+∞)内有______.
A:f'(x)>0,f"(x)<0 B:f'(x)>0,f"(x)>0 C:f'(x)<0,f"(x)<0 D:f'(x)<0,f"(x)>0
下面程序段中的错误语句是 ______。
class M
int i;
public:
void ~AA(int);
AA *p;
void AA( );
void AA(int x)i=x;;
;
A:AA *p; B:void ~AA(int); C:void AA(int); D:void AA(int x)i=x;;
在下面程序运行后,输出结果为 ______。
#include<iostream.h>
void count(int x[],int n,int &y)
int k;
y=0;
for(k=0:k<n;k++)
if(x[k]<0) y++;
void main( )
int b[]=2,1,-8,-3,7,2,4,6,0,-13;
int x;
count(b,10,x);
cout<<“x”<<x<<end1;
A:x=3 B:x=5 C:出错 D:x=0
下面程序段中的错误语句是 ______。 class M{ int i; public: void ~AA(int); AA *p; void AA( ); void AA(int x){i=x;}; };
A:AA *p; B:void ~AA(in; C:void AA(in; D:void AA(int {i=x;};
给出下面代码段:x处于什么范围时打印字符串“second”。 ( ) public class forLoopStatement { public static void main(String[]args) { int x=______;//给x赋值 if(x>0){System.out.println("first");} else if(x>-3){System.out.println("second");} else{System.out.println("third");} } }
A:x>0 B:x>-3 C:x<=-3 D:x<=0&x>-3