该公司代扣雇员乙的个人所得税是 ( )元。
A.95
B.101
C.400
D.80
参考答案:A
解析:该公司为乙代扣的个人所得税额=(2000-800)×10%-25=95元
患者,男,42岁,规律性上腹痛2年,为烧灼样痛,规律为进食一疼痛一缓解,该患者所得疾病的并发症不包括
A.穿孔
B.出血
C.癌变
D.幽门梗阻
E.恶性贫血
#define PR printf("a=%d,b=%d\n",a,b);
#include
void f(int x, int *y) {
*y=++x;
} void main() {
int a=10,b=20;
PR f(a,&b); PR
}