黑马程序员技术交流社区

标题: 使用三元运算符的例子 [打印本页]

作者: 雨来    时间: 2015-12-12 22:30
标题: 使用三元运算符的例子
虽然 用判断 语句  if  else if 也可以做出来,但这样做 感觉逻辑上更简答了!

  1. /**
  2. 不使用面向对象求三个数中的最大值。
  3. */

  4. class GetMaxThree {
  5. public static void main(String[] args) {
  6.   int result = getTwo(3,5);
  7.   System.out.println(result);
  8.   int result2 =getThree(3,5,8);
  9.   System.out.println("result2 = " +result2);
  10. }
  11. public static int getTwo(int a, int b){

  12.   return a>b?a:b;
  13. }
  14. public static int getThree (int a, int b, int c) {
  15.   //通过两次调用  getTwo 得到最大值
  16.   return getTwo(a,getTwo(b,c));

  17.   


  18. }
  19.   
  20. }



复制代码






欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2