C 程序写运行结果。
class A
{
public:
void f1()
{
printf("A::f1\r\n");
}
virtual void f2()
{
printf("A::f2\r\n");
}
void callfunc()
{
printf("A::callfunc\r\n");
f1();
f2();
}
};
class B :public A
{
public:
void f1()
{
printf("B::f1\r\n");
}
void f2()
{
printf("B::f2\r\n");
}
void callfunc()
{
printf("B::callfunc\r\n");
f1();
f2();
}
};
int main()
{
B *pB=new B;
pB->callfunc();
A *pA=pB;
pA->callfunc();
return 0;
}
第1题:
以下程序的运行结果为______。main(){ int i,f1,f2; f1=f2=1; for(i=0;i<4;i++) { printf("%d %d",f1,f2); f1+=f2; f2+=f1; }}
A.1 1 2 3 5 8 13 21
B.1 1 2 2 5 5 10 10
C.1 2 5 8 9 8 13 21
D.0 1 1 2 4 5 15 21
第2题:
以下程序的输出结果是( )。 include<stdio.h> void main() {int f,f1,f2,i; f1=0;f2=1; printf("%d%d",f1,f2); for(i=3;i<=5;i++) {f=-f1+f2,printf("%d",f); f2=f1;f1=f; } printf("\n"); }
第3题:
下面程序的输出结果是: def fib(n): f1, f2 = 0, 1 while f2 < n: print f2, f1, f2 = f2, f1 + f2 fib(10)
第4题:
有以下程序: int fa(int x) { return x*x; } int fb(int x) { return x*x*x; } int f(int (*f1)(),int (* f2)(),int x) { return (*f2)(x)-(*f1)(x); } main() { int i; i=f(fa,fb,2); printf("%d\n",i); } 程序运行后的输出结果是( )
A.-4
B.1
C.4
D.8
第5题:
设f1,f2是条件表达式,σf1(σf2(R))等价于_______。
A.σf1∧f2(R)
B.σf1Úf2(R)
C.σf2(R)
D.σf1(R)