.Net基礎篇_學習筆記_第四天_關系運算符和邏輯運算符
阿新 • • 發佈:2017-07-04
不能 main 運算 ram true con 是否 names 關系
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(); } } }
.Net基礎篇_學習筆記_第四天_關系運算符和邏輯運算符