问题描述:
问题解答:
1楼简单实用
int a=4;int b=5;int c=6;int minNum=Math.Min(Math.Min(a,b),c);//最小值int maxNum=Math.Max(Math.Max(a,b),c);//最大值
学习