标签:eric 包含 readline amp using adl text main 判断
1.关系运算符
包含:> < <= >= == !=
以及bool类型中的true和false。
2.逻辑运算符
与 &&
或 ||
非 !
注意:
逻辑运算符的两边放的一般都是关系表达式或者bool类型的值
3.复合运算符
+= -= *= /=
另外:扩充延伸.......
判断是否为闰年?
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 第四天_关系运算符和逻辑运算符 { class Program { static void Main(string[] args) { Console.WriteLine("请输入要判断的年份:"); int year = Convert.ToInt32(Console.ReadLine()); //进行判断能被400或能被4但不能被100整除 bool b = (year % 400==0) || (year%400==0&&year%100!=0); Console.WriteLine(b); Console.ReadKey(); } } }
标签:eric 包含 readline amp using adl text main 判断
原文地址:http://www.cnblogs.com/NBOWeb/p/7115765.html