您好,登錄后才能下訂單哦!
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace _12.流程控制之條件運算符 { class Program { static void Main(string[] args) { /** * 三元運算符也稱條件運算符 * * 其語法: * <test> ? <resultTrue> : <resultFalse> * * 其執行過程如下: * 計算表達式<test>的值,如果為true,則執行resultTrue表達式,否則執行resultFalse表達式。 * * 執行條件運算符會得到一個返回結果。 * */ // 使用條件運算符求出三個整數中的最大值。 int max, a = 6, b = 5, c = 7; max = (a > b) ? a : b; max = (max > c) ? max : c; Console.WriteLine("a = {0}, b = {1}, c = {2} 三個整數中的最大值為: {3}", a, b, c, max); Console.ReadKey(); } } }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。