若x和y均为int型变量,则执行以下程序段后的输出是

x=15;
y=15;
pintf(“%d\n”,x%=(y%=2));
若x和y均为int型变量,则执行以下程序段后的输出是

x=15;
y=15;
pintf(“%d\n”,x%=(y%=2));
B、1
C、6
D、15
【正确答案】:A
Top