Thursday, July 28, 2011

Short condition on C#

      เป็นการเขียน Condition แบบสั้น โดยให้เลือกค่าสูงสุดระหว่างตัวแปร a,b โดยสามารถยุป if มาเป็นบรรทัดเดียวได้ดัง Code ด้านล่าง
using System;
 
public class MyClass
{
    public static void Main()
    {
        int a = 5;
        int b = 10;
        int R1, R2;
        
        if (a>b)
        {
            R1 = a;
        }
        else
        {
            R1 = b;
        }        
        Console.WriteLine("R1 = " + R1);
        
        R2 = a > b ? a : b;      
        Console.WriteLine("R2 = " + R2);
        
        Console.ReadLine();
    }
}
  

No comments:

Post a Comment