Advertisement
cuniszkiewicz

Porownanie3Liczb

Oct 31st, 2023
822
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.11 KB | None | 0 0
  1. namespace porownanie3liczb
  2. {
  3.     class Program
  4.     {
  5.  
  6.  
  7.         static void Main(string[] args)
  8.         {
  9.             int a, b, c;
  10.  
  11.             char decyzjaKoniec;
  12.         poczatek:
  13.             Console.Clear();
  14.             Console.WriteLine("Podaj a: ");
  15.             a = int.Parse(Console.ReadLine());
  16.  
  17.  
  18.             Console.WriteLine("Podaj b: ");
  19.             b = int.Parse(Console.ReadLine());
  20.  
  21.  
  22.             Console.WriteLine("Podaj c: ");
  23.             c = int.Parse(Console.ReadLine());
  24.  
  25.             Console.Clear();
  26.  
  27.             // a najwieksze
  28.             if (a > b && a > c)
  29.             {
  30.  
  31.                 if (b > c)
  32.                 {
  33.                     Console.WriteLine($"{a} > {b} > {c}");
  34.                 }
  35.                 else
  36.                 {
  37.                     Console.WriteLine($"{a} > {c} > {b}");
  38.                 }
  39.  
  40.             }
  41.  
  42.             //b najwieksze
  43.             if (b > a && b > c)
  44.             {
  45.  
  46.                 if (a > c)
  47.                 {
  48.                     Console.WriteLine($"{b} > {a} > {c}");
  49.                 }
  50.                 else
  51.                 {
  52.                     Console.WriteLine($"{b} > {c} > {a}");
  53.                 }
  54.             }
  55.             //c najwieksze
  56.             if (c > a && c > b)
  57.             {
  58.  
  59.                 if (b > a)
  60.                 {
  61.                     Console.WriteLine($"{c} > {b} > {a}");
  62.                 }
  63.                 else
  64.                 {
  65.                     Console.WriteLine($"{c} > {a} > {b}");
  66.                 }
  67.             }
  68.             Console.ReadKey();
  69.  
  70.             Console.WriteLine("czy chcesz kontynuowac? t-tak n-nie: ");
  71.             decyzjaKoniec = char.Parse(Console.ReadLine());
  72.             if (decyzjaKoniec == 't')
  73.             {
  74.                 goto poczatek;
  75.             }
  76.             else
  77.             {
  78.                 Console.Clear();
  79.                 Console.WriteLine("\n\n\n\n\t\t\t\t\t\tdziekuje za skorzystanie z programu.");
  80.             }
  81.             //Console.ReadKey();
  82.             System.Threading.Thread.Sleep(3000); // zatrzymanie programu na trzy sekundy
  83.  
  84.         }
  85.  
  86.     }
  87. }
  88.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement