曲线x3+y3+(x+1)cosπy+9=0,在x=-1点处的法线方程是()。
A:y-3x+1=0 B:y-3x=0 C:y-3x-1=0 D:3y-3x-1=0
曲线x3+y3+(x+1)cosπy+9=0,在x=-1点处的法线方程是( )。
A:y-3x+1=0 B:y-3x=0 C:y-3x-1=0 D:3y-3x-1=0
下列()项是在D={(x,y)|x2+y2≤1,x≥0,y≥0)上的连续函数f(x,y),且f(x,y)=3(x+y)+16xy。
A:f(x,y)=3(x+y)+32xy B:f(x,y)=3(x+y)-32xy C:f(x,y)=3(x+y)-16xy D:f(x,y)=3(x+y)+16xy
曲线x3+y3+(x+1)cosπy+9=0,在x=-1点处的法线方程是:()
A:y+3x+b=0 B:y-3x-1=0 C:y-3x-8=0 D:y+3x+1=0
执行以下语句的结果为______。
int x=3,y;int*px=&x;y=*px++;
A:x=3,y=4 B:x=3,y=3 C:x=4,y=4 D:x=3,y不知
下列程序的运行结果是( )。
int y=5,x=14;
y=((x=3*y,x+1),x-1);
printf("x=%d,y=%d",x,y);
A:x=27,y=27 B:x=12,y=13 C:x=15,y=14 D:x=y=27
下列程序的执行结果是( )。 #include<iostream.h> class Sample { int x,y; public: Sample( ){x=y=0;) Sample(int a,int b){x=a;y=b;} ~Sample( ) { if=(x==y) cout<<“x=y”<<endl; else cout<<“x!=y”<<endl; } void disp( ) { cout<<“x=”<<x<<“,y=”<<y<<endl; } }; void main( ) { Sample s1(2,3); s1.disp( ); }
A:x=2,y=2 B:x=3,y=3 C:x=2,y=3 D:x=3,y=2
下列程序执行后,屏幕的输出是( )。 #include<iostream> using namespace std; void swap(int x,int y) { int temp=x; x=y; y=temp; cout<<"x="<<x<<"",y=""<<y<<end1; } int main( ) { int x=3,y=2; swap(x,y); cout<<"x="<<x<<",y="<<y<<end1; return 0; }
A:x=3,y=2 x=3,y=2 B:x=2,y=3 x=3,y=2 C:x=2,y=3 x=2,y=3 D:x=3,y=2 x=2,y=3
下列程序的运行结果是( )。 int y=5, x=14; y=((x=3* y,x+1),x-1); printf("x=%d,y=%d",x,y);
A:x=27,y=27 B:x=12,y=13 C:x=15,y=14 D:x=y=27