المشاركات

عرض المشاركات من أكتوبر, 2018
int x = 33;             if (x == 8)             {                 Console.WriteLine("value of x is 9");             }             else if (x == 18)             {                 Console.WriteLine("value of x is 18");             }             else if (x == 33)             {                 Console.WriteLine("value of x is 33");             }             else             {                 Console.WriteLine("no match");             }        ...
int age = 17;             if (age > 14)             {                 if (age > 18)                 {                     Console.WriteLine("adult");                 }                 else                 {                     Console.WriteLine("teenagers");                 }             }             else             {                 if (age > 0)                 {           ...
 int mark = 100;             if (mark >= 50)             {                 Console.WriteLine("you passed");                 if (mark == 100)                 {                     Console.WriteLine("perfect");                 }             }             else             {                 Console.WriteLine("you failed");             }             Console.ReadKey();
int b = 8;             int a = 8;             if (a == b)             {                 Console.WriteLine("equal");             }             Console.ReadKey();
  int x = 8;             int y = 3;             if (x > y)             {                 Console.WriteLine("x is greater than y");             }             Console.ReadKey();