设方程y"-4y’+3y=0的某一积分曲线,它在点(0,2)处与直线x-y+2=0相切,则该积分曲线的方程是().
A.
B.
C.
D.
参考答案:B
以下程序运行后的输出结果是 #include<stdio.h> int f(int t[], int n); main() { int a[4]={1, 2, 3, 4}, s;s=f(a, 4); printf("%d\n", s); } int f(int t[], int n) { if(n>0) return t[n-1]+f(t, n-1);else return 0; }
A.4
B.10
C.14
D.6
种