下列程序执行后的输出结果是( )。 #include "stdio.h" void main() { int a=-1,b=1,k; if((++a<0)&&!(b--<=0)) printf("%d,%d\n",a,b); else printf("%d,%d\n",b,a); }
A.1,0 B.0,1 C.1,1 D.0,0正确答案A
下列程序执行后的输出结果是( )。 #include "stdio.h" void main() { int a=-1,b=1,k; if((++a<0)&&!(b--<=0)) printf("%d,%d\n",a,b); else printf("%d,%d\n",b,a); }
A.1,0 B.0,1 C.1,1 D.0,0正确答案A