传统相机使用()并存储图像,而数码相机使用()、用()保存图像。
参考答案:胶圈感光;电荷耦合器(CCD)感光;数字存储卡
男性,56岁,间歇性全程无痛性肉眼血尿3个月。IVP:肾脏、输尿管未见异常,膀胱右侧壁见直径约1.5cm充盈缺损。为明确诊断应考虑做何种检查()
A.CT
B.双合诊检查
C.膀胱镜检
D.尿液常规
E.肾功能检查
有如下程序: #include <iostream.h> using namespace std; class Stack { public: Stack(unsigned n=10):size(n){rep_=new int [size]; top=0;} Stack(Stack&s): size (s.size) {rep_=new int[size];for(int i=0;i<size;i++) rep_[i]=s.rep_[i];top=s.top; }~Stack(){delete[]rep_;} void push(int a){rep_[top]=a; top++;} int pop(){--top; return rep_[top];} bool isEmpty() const {return top ==0;} private: int*rep_; unsigned size, top; }; int main() { Stack s1; for(int i=1;i<5;i++)sl.push(i); Stack s2(s1); for (int i=1;i<3;i++)cout<<s2.pop()<<’,’; s2.push(6); s1.push(7); while(!s2.isEmpty())cout<<s2.pop()<<’,’; return 0; } 执行上面程序将输出( )。
A.4,3,2,1,
B.4,3,6,7,2,1,
C.4,3,6,2,1,
D.1,2,3,4,