logo

Ц# ако-иначе

У Ц# програмирању, иф изјава се користи за тестирање стања. Постоје различите врсте иф наредби у Ц#.

  • иф изјава
  • иф-елсе изјава
  • угнежђени иф исказ
  • ако-друго-ако мердевине

Ц# ИФ изјава

Ц# иф изјава тестира услов. Извршава се ако је услов истинит.

Синтакса:

 if(condition){ //code to be executed } 
иф изјава у јава

Ц# Иф Пример

 using System; public class IfExample { public static void Main(string[] args) { int num = 10; if (num % 2 == 0) { Console.WriteLine('It is even number'); } } } 

Излаз:

 It is even number 

Ц# ИФ-елсе изјава

Ц# иф-елсе изјава такође тестира услов. Извршава ако блок ако је услов тачан иначе елсе блок се извршава.

Синтакса:

 if(condition){ //code if condition is true }else{ //code if condition is false } 
Ц# иф-елсе изјава

Пример Ц# ако-иначе

 using System; public class IfExample { public static void Main(string[] args) { int num = 11; if (num % 2 == 0) { Console.WriteLine('It is even number'); } else { Console.WriteLine('It is odd number'); } } } 

Излаз:

 It is odd number 

Ц# Иф-елсе Пример: са уносом од корисника

У овом примеру добијамо унос од корисника који користи Цонсоле.РеадЛине() методом. Враћа стринг. За нумеричку вредност, потребно је да је конвертујете у инт користећи Цонверт.ТоИнт32() методом.

 using System; public class IfExample { public static void Main(string[] args) { Console.WriteLine('Enter a number:'); int num = Convert.ToInt32(Console.ReadLine()); if (num % 2 == 0) { Console.WriteLine('It is even number'); } else { Console.WriteLine('It is odd number'); } } } 

Излаз:

 Enter a number:11 It is odd number 

Излаз:

 Enter a number:12 It is even number 

Ц# ИФ-елсе-иф мердевина изјава

Ц# иф-елсе-иф мердевина израз извршава један услов из више наредби.

Синтакса:

 if(condition1){ //code to be executed if condition1 is true }else if(condition2){ //code to be executed if condition2 is true } else if(condition3){ //code to be executed if condition3 is true } ... else{ //code to be executed if all the conditions are false } 
Ц# иф-елсе-иф изјава

Ц# Иф елсе-иф Пример

 using System; public class IfExample { public static void Main(string[] args) { Console.WriteLine(&apos;Enter a number to check grade:&apos;); int num = Convert.ToInt32(Console.ReadLine()); if (num 100) { Console.WriteLine(&apos;wrong number&apos;); } else if(num &gt;= 0 &amp;&amp; num = 50 &amp;&amp; num = 60 &amp;&amp; num = 70 &amp;&amp; num = 80 &amp;&amp; num = 90 &amp;&amp; num <= 100) { console.writeline('a+ grade'); } < pre> <p>Output:</p> <pre> Enter a number to check grade:66 C Grade </pre> <p>Output:</p> <pre> Enter a number to check grade:-2 wrong number </pre></=>

Излаз:

 Enter a number to check grade:-2 wrong number