Advertisement
cuniszkiewicz

Kwadrat

Oct 31st, 2023
792
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.62 KB | None | 0 0
  1. namespace filipCwiczenia
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             int dlugosc;
  8.             Console.Write("podaj dlugosc boku kwadratu: ");
  9.             dlugosc = int.Parse(Console.ReadLine());
  10.             Console.Clear();
  11.             Console.WriteLine("oto wyniki twoich zadan:");
  12.             Console.WriteLine();
  13.             int pole = dlugosc * dlugosc;
  14.             int obwod = dlugosc * 4;
  15.             Console.WriteLine($"pole kwadtratu o boku {dlugosc} wynosi {pole}");
  16.             Console.WriteLine($"obwod kwadratu o boku {dlugosc} wynosi {obwod}");
  17.  
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement