3.以下程序的输出结果为( )。 #include <stdio.h> main () { int a,b,c=246; a=c/100%9; b=(-1)&&(-1);
3.以下程序的输出结果为( )。 #include <stdio.h> main () { int a,b,c=246; a=c/100%9; b=(-1)&&(-1);
日期:2018-04-18 19:20:43 人气:2
首先a=b=c=246;
再计算:a=c/100%9,先c整除100等于2,再求2除于9的余数等于2,所以最后a的值为2;
b=(-1)&&(-1)的逻辑值是1,即b=1;
c的值未改变。