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

关于条件运算符的应用

时间:2015-06-01 09:26:49      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

题目:输入一个24小时制的整数时间,判断所在时间段。

       int a,b;
       a = int.Parse(Console .ReadLine());//输入的时间
       b = 12;
       string s;
       s = a-b > 0 ?a-b+"pm" :a+"am" ;
       Console.WriteLine(s);

关于条件运算符的应用

标签:

原文地址:http://www.cnblogs.com/shaobing012/p/4543183.html

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