โดยสามารถยุป 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();
}
}
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();
}
}
ที่รักเก่งจังงง ...จุ๊ฟฟฟฟฟๆๆๆๆ
ReplyDelete