撒哈拉以南非洲主要的人种是( )
A.黄种人
B.白种人
C.黑种人
D.混血人种
撒哈拉以南的非洲即非洲的中部和南部,主要分布着黑色人种.
故选:C.
食管沟
有如下程序: #include<iostream> using namespace std; class Base private: char c; piblic: Base(char n):c(n) ~Base() cout<<C; ; class DeriVed:public Base private: char c; public: Derived(char n):Base(n+1),c(n) ~Derived() cout<<c; ; int main() Derived obj('x'); return 0; 执行上面的程序将输出
A) xy B) yxC) x D) y