码迷,mamicode.com
首页 > 其他好文 > 详细

三目运算符

时间:2016-11-07 19:45:43      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:三目运算符   public   span   util   scanner   static   system   max   nbsp   

 1 import java.util.Scanner;
 2 
 3 
 4 //三目运算符
 5 public class SingleQuestion{
 6     public static void main(String args[]){
 7         int x = 10;
 8         int y = 9;
 9         int max = x > y ? x : y;
10         System.out.println("较大的数字是:"+ max);
11     }
12 }

 

三目运算符

标签:三目运算符   public   span   util   scanner   static   system   max   nbsp   

原文地址:http://www.cnblogs.com/YangGC/p/6040128.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!