Advertisement
cuniszkiewicz

PorownanieLiczb

Oct 18th, 2023
880
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.78 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace DodatnieUjemne
  8. {
  9.     internal class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int a, b;
  14.  
  15.             Console.Write("Podaj a: ");
  16.             a = int.Parse(Console.ReadLine());
  17.             Console.Write("Podaj b: ");
  18.             b = int.Parse(Console.ReadLine());
  19.            
  20.             if (a == b)
  21.                 Console.WriteLine($"{a} = {b}");
  22.             else
  23.             {
  24.                 if (a > b)
  25.                     Console.WriteLine($"{a} > {b}");
  26.                 else
  27.                     Console.WriteLine($"{a} < {b}");
  28.  
  29.             }
  30.  
  31.             Console.ReadKey();
  32.         }
  33.     }
  34. }
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement