#include <iostream.h> void main() { int a=5,b=4,c=3,d; d=(a>b>c); cout<<d; }为什么不是1而是0呢? 我来答 可选中1个或多个下面的关键词,搜索相关资料。也可直接点“搜索资料”搜索整个问题。 include iostream void int cout 搜索资料 1个回答 #热议# 上班途中天气原因受伤算工伤吗? 空雪梦见 2013-05-25 · TA获得超过5597个赞 知道大有可为答主 回答量:2522 采纳率:75% 帮助的人:1192万 我也去答题访问个人页 关注 展开全部 a>b成立,故值为1于是 a>b>c 变成了 1>c因为c是3,不成立所以是0这玩意儿和数学不同 本回答由提问者推荐 已赞过 已踩过< 你对这个回答的评价是? 评论 收起 推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询 其他类似问题 2010-11-18 #include<iostream.h> int x; int &f() {return x;} void main() {f()=100; cout<<f()<<x<<endl; } 1 2013-01-19 #include <stdio.h> void main() { printf("%d\n",1/3*3); } 这个哪里错了我怎么算不出来呢 13 2010-10-14 #include<iostream> using namespace std; void main(){ cout<<"hello C++\n"; }为何编译成功却无法执行? 3 2012-06-04 #include<stdio.h > void main() { int b,c, a[b][c]; for(b=0;b<=20;b++) { for(c=0;c<=20;c++) a[b][c]=0 2 更多类似问题 > 为你推荐: