-->
当前位置:首页 > 题库

PROGRAMMING:The particularity of logic operation

Luz5年前 (2021-05-10)题库475
Please input and analyze the following code:
```
Case 02-02-05 special features of logic operation
#include
int main(){
int a,b,c,d;
a=5; b=6;
c=(a<=8)&&(b=7)>5; printf("c=%d,b=%d\n",c,b);
a=5; b=6;
c=(a<=4)&&(b=7)>5; printf("c=%d,b=%d",c,b);
}
```
#####Input example:
```in
```
###Output example:
```out
c=1,b=7
c=0,b=6
```






answer:If there is no answer, please comment