Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace porownanie3liczb
- {
- class Program
- {
- static void Main(string[] args)
- {
- int a, b, c;
- char decyzjaKoniec;
- poczatek:
- Console.Clear();
- Console.WriteLine("Podaj a: ");
- a = int.Parse(Console.ReadLine());
- Console.WriteLine("Podaj b: ");
- b = int.Parse(Console.ReadLine());
- Console.WriteLine("Podaj c: ");
- c = int.Parse(Console.ReadLine());
- Console.Clear();
- // a najwieksze
- if (a > b && a > c)
- {
- if (b > c)
- {
- Console.WriteLine($"{a} > {b} > {c}");
- }
- else
- {
- Console.WriteLine($"{a} > {c} > {b}");
- }
- }
- //b najwieksze
- if (b > a && b > c)
- {
- if (a > c)
- {
- Console.WriteLine($"{b} > {a} > {c}");
- }
- else
- {
- Console.WriteLine($"{b} > {c} > {a}");
- }
- }
- //c najwieksze
- if (c > a && c > b)
- {
- if (b > a)
- {
- Console.WriteLine($"{c} > {b} > {a}");
- }
- else
- {
- Console.WriteLine($"{c} > {a} > {b}");
- }
- }
- Console.ReadKey();
- Console.WriteLine("czy chcesz kontynuowac? t-tak n-nie: ");
- decyzjaKoniec = char.Parse(Console.ReadLine());
- if (decyzjaKoniec == 't')
- {
- goto poczatek;
- }
- else
- {
- Console.Clear();
- Console.WriteLine("\n\n\n\n\t\t\t\t\t\tdziekuje za skorzystanie z programu.");
- }
- //Console.ReadKey();
- System.Threading.Thread.Sleep(3000); // zatrzymanie programu na trzy sekundy
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement