#include<stdio.h> main() { int a=5,b=6,c=1,x=2,y=3,z=4; c=(a=c>x)&&(b=y>z); printf("%d",b); } 为什么运行结果是6?... 为什么运行结果是6? 展开 我来答 可选中1个或多个下面的关键词,搜索相关资料。也可直接点“搜索资料”搜索整个问题。 include printf stdio.h int 搜索资料 1个回答 #热议# 生活中有哪些实用的心理学知识? 小七说LoRa 2013-07-03 · TA获得超过461个赞 知道小有建树答主 回答量:433 采纳率:0% 帮助的人:233万 我也去答题访问个人页 关注 展开全部 &&运算符是先计算左边表达式的值,如果左边表达式的值为0的话,就不执行右边表达式的值了。而你左边表达式c=(a=c>x)的值已经为0了,所有程序根本就没有执行右边表达式的值,所以b的值没有发生变化。 本回答由提问者推荐 已赞过 已踩过< 你对这个回答的评价是? 评论 收起 推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询 其他类似问题 2020-12-10 #include<stdio.h>int f(int a){int b=0;static int c=3;b++;c++;return(a+b+c);}void main() 58 2020-12-07 #include<stdio.h> main() {printf("hello,world");} 3 2021-06-27 #include <stdio.h> void main() { int a=28,b; char s[10],*p; p=s; do { b=a%16; if(b<10) *p=b+48; el 18 2022-04-30 #include<stdio.h> int fun(int n,int *s){int f1,f2 2022-12-10 #include "stdio.h"int main(){int m=9;for (; m > 0; m--)if (m % 3 == 0)printf("%d", --m);return 0;} 2021-04-17 #include <stdio.h> #define F(X,Y) X*Y main() { int a=3, b=4; printf("%d\n", F(a+b, a-b)); } 4 2018-03-08 #include<stdio.h> int main() {int a=5,b=6,c=7,d=8,m=2,n=2; printf("%d",((m=a>b)&&(n=c>d))); } 60 2018-02-27 #include<stdio.h> main( ) { int a=1,b=2; for(;a<8;a++){b+=a;a+=2;} printf("%d,%d\n",a,b); } 129 更多类似问题 > 为你推荐: