Advertisement
cuniszkiewicz

DodatnieUjemne

Oct 18th, 2023
663
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.81 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 DodatniaUjemna
  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.             {
  22.                 Console.WriteLine($"{a} = {b}");
  23.             }
  24.             else
  25.             {
  26.                 if (a > b)
  27.                     Console.WriteLine($"{a} > {b}");
  28.                 else
  29.                     Console.WriteLine($"{a} < {b}");
  30.             }
  31.            
  32.             Console.ReadKey();
  33.         }
  34.     }
  35. }
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement