大型医用设备管理品目中属于甲类设备的是
A:PET、SPECT B:PET/CT、PET C:PET、SPECT/CT D:PET/CT、SPECT/CT E:SPECT、SPECT/CT
肿瘤PET显像方法主要包括(1)肿瘤______PET显像;(2)肿瘤______PET显像;(3)肿瘤______PET显像。
关于SPECT/PET与PET的比较,下列哪些不正确()
A:SPECT/PET与PET均采用符合探测原理 B:SPECT/PET在空气中的分辨率可达4.5mm,与PET接近 C:SPECT/PET兼备单光子和F正电子成像 D:PET只能进行F正电子成像 E:SPECT/PET和PET均能进行快速动态显像
大型医用设备管理品目中属于甲类设备的是
A:PET、SPECT B:PET/CT、PET C:PET、SPECT/CT D:PET/CT、SPECT/CT E:SPECT、SPECT/CT
如下程序的输出结果是______。
#include<iostream>
using namespace std;
class Pet
char name[10];
public:
Pet(char*nanle)strcpy(this->name,name);
const char*getName( )constreturn name;
virtual void call( )eonst=0;
;
class Dog:public Pet
public:
Dog(char*name):Pet(name)
void call( )eonstcout<<"汪汪叫";
;
class Cat:public Pet
public:
Cat(char*name):Pet(name)
void call( )consteout<<"喵喵叫";
;
int main( )
Pet*petl=new Dog("哈克"),*pet2=new Cat("吉米");
eout<<petl->getName( );petl->call( );eout<<endl;
cout<<pet2->getName( );pet2->call( );eout<<endl;
return 0;
哈克汪汪叫 吉米喵喵叫
如下程序的输出结果是______。
#include<iostream>
using namespace std;
class Pet
char name[10];
public:
Pet(char*nanle)strcpy(this->name,name);
const char*getName( )constreturn name;
virtual void call( )eonst=0;
;
class Dog:public Pet
public:
Dog(char*name):Pet(name)
void call( )eonstcout<<"汪汪叫";
;
class Cat:public Pet
public:
Cat(char*name):Pet(name)
void call( )consteout<<"喵喵叫";
;
int main( )
Pet*petl=new Dog("哈克"),*pet2=new Cat("吉米");
eout<<petl->getName( );petl->call( );eout<<endl;
cout<<pet2->getName( );pet2->call( );eout<<endl;
return 0;
哈克汪汪叫 吉米喵喵叫
有如下程序:
#include<iostream>
using namespace std;
class Pet{
char name[10];
public:
Pet(char*name){strcpy(this->name,name);}
const char*getName( )const {return name;}
virtual void call( )const=0;
};
class Dog:public Pet{
public:
Dog(char*name):Pet(name){}
void call( )const{cout<<"汪汪叫":}
};
class Cat:public Pet{
public:
Cat(char*name):Pet(name){}
void call( )const{cout<<"喵喵叫";}
};
int main( ){
Pet*pet1=new Dog("哈克"),*pet2=new Cat("吉米");
cout<<pet1->getName( );pet1->call( );cout<<end1;
cout<<pet2->getName( );pet2->call( );cout<<end1;
return 0;
}
程序的输出结果是______。