All pastes #2128639 Raw Edit

Something

public text v1 · immutable
#2128639 ·published 2012-03-16 09:44 UTC
rendered paste body
/*
 * Created by SharpDevelop.
 * User: Jezzon
 * Date: 2012-03-16
 * Time: 09:37
 * 
 * To change this template use Tools | Options | Coding | Edit Standard Headers.
 */
using System;

namespace tomek
{
	class Program
	{
		public static void Main(string[] args)
		{
			int a,b;
			Random random;
			for(int i=0;i<3;i++) {
				if(i==1) Console.WriteLine("Tomek Lellek");
				else Console.WriteLine("**********************************");
			}
			
			for(int i=1;i<4;i++) {
			Console.WriteLine("====> Losowanie "+i);
			
			random = new Random(DateTime.Now.Millisecond);
			a=random.Next(10);
			random = new Random(DateTime.Now.Millisecond);
			b=random.Next(10);
			Console.WriteLine("A: "+a);
			Console.WriteLine("B: "+b);
			if(a==b) Console.WriteLine("Liczby sa rowne");
			else if(a>b) Console.WriteLine("A>B");
			else if(a<b) Console.WriteLine("A<B");
			Console.WriteLine();
			}
			
			Console.ReadKey(true);
		}
	}
}