星空图的方向是()
A.上南下北、左西右东
B.上南下北、左东右西
C.上北下南、左西右东
D.上北下南、左东右西
参考答案:D
特殊物品不等同于一般物品,需经严格的审批和检验方能出入境。( )
有以下程序: #include <iostream> using namespace std; class sample private:int x; public:void setx(int i) x=i;int putx () return x; ; int main ( ) sample *p;sample A[3];A[0] .setx(5);A[1] .setx (6);A[2] .setx(7);for (int j=0;j<3;j++) p=&A[j]; cout<<p->putx () <<", ";cout<<end1;return 0; 执行后执行结果是( )。
A.5,6,7,
B.5,5,5,
C.6,6,6,
D.7,7,7,