我爱橙 发表于 2022-4-29 13:30:13

EX6.4 while循环

下面程序的输出结果是

#include <stdio.h>

main( )

{

   inta=-2,b=0;            
       while(a++&&++b);
       printf("%d,%d\n",a,b);
}




A.1,3


B.0,2


C.0,3


D.1,2
页: [1]
查看完整版本: EX6.4 while循环