using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace ConsoleApplication11 { class Program { static void Main(string[] args) { // pokarz if_2 int dzielna = 15; int dzielnik = 5; if (dzielnik != 0) { int wynik = dzielna / dzielnik; Console.WriteLine("Wynik dzielenia wynosi: " + wynik); } else { Console.WriteLine("Dzielnik nie może być zerem"); } Console.ReadKey(); } } } _____________________________________________________________________________ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication11 { class Program { static void Main(string[] args) { int zmienna = -5; if (zmienna < 0) { Console.WriteLine("Podana zmienna ma wartość 5 "); } else { Console.WriteLine("Podana wartość jest spoza zakresu"); } Console.ReadKey(); } } } _________________________________________________________________________ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication11 { class Program { static void Main(string[] args) { int x = -5; if (x==5) { Console.WriteLine("Podana zmienna ma wartość 5 "); } else { Console.WriteLine("Podana wartość jest spoza zakresu"); } Console.ReadKey(); } } } _____________________________________________________________________________ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication11 { class Program { static void Main(string[] args) { int a = 4; if (a>0) { Console.WriteLine("Pierwszy warunek jet spełniony"); } else { Console.WriteLine("Drugi warunek też jest spełniony"); } Console.ReadKey(); } } } _________________________________________________________________________ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication11 { class Program { staticvoid Main(string[] args) { int ocena = 3; if(ocena>=1 && ocena<=5) { if(ocena>2.75) Console.WriteLine("Gratulacje zdanego egzaminu"); elseConsole.WriteLine("Sory nie zdałeś"); } else Console.WriteLine("Nie ma takiej oceny"); Console .ReadKey(); } } }