使人的对暗适应能力受到损害的因素是().
A.二氧化碳;
B.食物中缺乏维生素A;
C.座舱压力高度超过5000英尺。
参考答案:B
根据《现金管理条例》规定,下列经济业务中,不能用现金支付的是( )。
A.支付职工奖金5000元
B.支付零星办公用品购置费800元
C.支付物资采购货款1200元
D.支付职工差旅费2000元
执行下面程序段,屏幕上将输出( )。 public class Test {private int x=10,y=20;public Test (int x,int y) { System.out.println (x+this.x); System.out.println (y+y); }public static void main (String[] args) { Testt= new Test(30,50); } }
A.无输出
B.20 40
C.40 100
D.40 70