Podstawy programowania 29 10 2013


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();
}
}
}

Wyszukiwarka

Podobne podstrony:
Podstawy programowania  11 2013
Podstawy programowania  12 2013
Podstawy programowania  11 2013
Podstawy programowania programy 17 12 2013
22 10 2013 Lechowski Podstawy
Podstawy prawoznawstwa 22 10 2013 Wykład 3
Podstawy Programowania 13 10 2014
zestawy cwiczen przygotowane na podstawie programu Mistrz Klawia 6
Podstawy Programowania Wersja Rozszerzona
29 10 2013
Visual C 6 0 Podstawy programowania
30 10 2013 POCZĄTKI PAŃSTWOWOŚCI EGIPSKIEJ wykład
matlab podstawy programowania
JP SS 2 algorytmy i podstawy programowania
Podstawy programowania II 2
podstawy programowania 5
wyklad 3 zap i,! 10 2013
podstawa programowa

więcej podobnych podstron