static void Main(string[] args)
{
//提示輸入二個數(shù),用三元表達式求最大值,不考慮異常情況
Console.WriteLine("請輸入第一個數(shù)");
int num1 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("請輸入第二個數(shù)");
int num2 = Convert.ToInt32(Console.ReadLine());
站在用戶的角度思考問題,與客戶深入溝通,找到新昌網(wǎng)站設計與新昌網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設計與互聯(lián)網(wǎng)技術結合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都網(wǎng)站制作、成都做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、域名注冊、網(wǎng)絡空間、企業(yè)郵箱。業(yè)務覆蓋新昌地區(qū)。
//語法:表達式1?表達式2 :表達式3
int max = num1 > num2 ? num1 : num2;
Console.WriteLine("所輸入的二個數(shù),最大值是:" + max);
Console.ReadKey();
}