某患者得知自己患了艾滋病或性病以后,产生心理反应,可能是
A.焦虑和震惊B.否认和怀疑C.羞辱和罪恶D.退缩和抑郁E.踌躇和抵抗
参考答案:C
患者男性,45岁。平素喜吃肉食,不喜蔬菜,不爱饮水。活动后突发腰部剧痛,向下腹、会阴及大腿内侧放射。
对该患者行体外冲击波碎石,护理措施包括().
A.术晨禁食水
B.术后鼓励患者大量饮水
C.嘱术中不能随意移动体位
D.前2日服缓泻剂
E.术后在病情允许的情况下适当作跳跃运动
F.术前3日忌食易产气食物
阅读以下说明和Java程序,将应填入 (n) 处的字句写在对应栏内 [说明] 以下程序的功能时三角形、矩形和正方形的面积输出。 程序由5个类组成:areatest是主类,类Triangle,Rectangle和Square分别表示三角形、矩形和正方形,抽象类Figure提供了一个计算面积的抽象方法。 [Java程序] public class areatest { public static viod main(string args[]){ Figure[]Figures={ New triangle(2,3,3),new rectangle(5,8),new square(5) }; for(int i=0; i<Figures.length;i++){ system.out.println(Figures+"area="+Figures.getarea()); } } } public abstract class figure { public abstract double getarea(); } public class rectangle extends (1) { double height; double width; public rectangle (double height,double width){ this.height=height; this.width=width; } public string tostring(){ return"rectangle:height="+height+",width="+width+":"; } public double getarea(){ return (2) } } public class square exends (3) { public square(double width){ (4) ; } public string tostring(){ return"square:width="+width":"; } } public class triangle entends (5) { double la; double lb; double lc; public triangle(double la,double lb,double lc){ this.la=la;this.lb=lb;this.lc=lc; } public string tostring()( return"triangle:sides="+la+","+lb+","+lc+":"; } public double get area(){ double s=(la+lb+lc)/2.0; return math.sqrt(s*(s-la)*(s-lb)*(s-lc)); } }