求助
codeblocks吧
全部回复
仅看楼主
level 8
然而就是这一小段程序就是通不过,错误提示还是英文的还看不懂,在vs2010是就是通过编译,求高手支招
2015年10月13日 05点10分 1
level 8
自顶
2015年10月13日 09点10分 2
level 11
#include <stdio.h>
int main()
{
int a=1,b=2,c=3;
int max;
a>b?max=a:max=b;
max>c?printf("max is %d",max):printf("max is %d",c);
}
2015年10月13日 14点10分 3
跟我的有什么区别
2015年10月13日 15点10分
level 8
跟我的有什么区别
2015年10月13日 15点10分 4
level 6
a>b那段写错了
2015年10月13日 15点10分 5
1