Podstawy programowania 12 11 2013


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication16
{
class Program
staticvoid Main(string[] args)
{
double x, y;
x = double.Parse(Console.ReadLine());
y = double.Parse(Console.ReadLine());
if(x > y)
Console.WriteLine("x {0}", x);
else
Console.WriteLine("y {0}", y);
Console.ReadKey();
}
}
}
___________________________________________

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication16
{
class Program
{
staticvoid Main(string[] args)
{
int x = 8;
Console.WriteLine(x++);
Console.WriteLine(++x);
Console.ReadKey();
}
}
}
________________________________________________

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication16
{
class Program
staticvoid Main(string[] args)
{
int i, n;
i = 1;
Console.Write("Wprowadź ilość wysietlanych słów: ");
n=Convert.ToInt16(Console.ReadLine());
while(i<=n)
{
Console.Write("Napis ");
i++;
}
Console.ReadKey();
}
}
}
_________________________________________________________
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication16
{
class Program
staticvoid Main(string[] args)
{
Console.WriteLine("wprowadź n: ");
int n = int.Parse(Console.ReadLine());
int i = 1;
while(i<=n)
{
if(i % 2 != 0)
Console.WriteLine(i);
i++;
}
Console.ReadKey();
}
}
}

Wyszukiwarka

Podobne podstrony:
Podstawy programowania  11 2013
Podstawy programowania ) 10 2013
Podstawy programowania  12 2013
Podstawy programowania programy 17 12 2013
Podstawy prawoznawstwa 19 11 2013 Ćwiczenia
Podstawy prawoznawstwa 26 11 2013 WYKŁAD
Podstawy prawoznawstwa 05 11 2013 Wykłady
zestawy cwiczen przygotowane na podstawie programu Mistrz Klawia 6
Podstawy Programowania Wersja Rozszerzona
wyklad 7 zap i, 11 2013
Visual C 6 0 Podstawy programowania
wyklad 8 zap i, 11 2013
Techniki negocjacji i mediacji w administracji wykłady 05 11 2013
CHEMIA dla IBM Wyklad 8) 11 2013
matlab podstawy programowania
JP SS 2 algorytmy i podstawy programowania
Podstawy programowania II 2
6 11 2013 EGIPT W OKRESIE STAREGO I ŚREDNIEGO PAŃSTWA wykład

więcej podobnych podstron