c语言_2017.10.22
void main() { int a = 2,b = 10,c = 5,max;//定义三个变量,一个最大值变量 if(a>b&&a>c)//判断最大值是a时 { printf("最大值是:%d",a);//输出最大值是a }else if(b>a&&b>c)//判断最大值是b时 { printf("最大值是:%d",b);//输出最大值是b }else if(c>a&&c>b)//判断最大值是c时 { printf("最大值是:%d",c);//输出最大值是b } }
#include "stdio.h" void main() { int a = 2,b = 3,c = 4,max; max = (a>b)?a:b; if(c>max){ printf("最大值是:%d",c); }else{ printf("最大值是:%d",max); } }