美文网首页
021_三元运算符。

021_三元运算符。

作者: 立秋i | 来源:发表于2018-03-30 23:33 被阅读0次

namespace _021_三元运算符 {

    class Program {

        static void Main(string[] args)

        {

            //int myInteger = 100;

            //string resStr = (myInteger < 10)

            //    ? "Less than 10"

            //    : "Greater than or equal to 10";

            //Console.WriteLine(resStr);

            string str = Console.ReadLine();

            int score = Convert.ToInt32(str);

            string resStr = score > 50 ? "您输入的分数大于50" : "您输入的分数小于等于50";

            Console.WriteLine(resStr);

            Console.ReadKey();

        }

    }

}

相关文章

网友评论

      本文标题:021_三元运算符。

      本文链接:https://www.haomeiwen.com/subject/sevmcftx.html