Advertisement
cuniszkiewicz

Prostokąt

Oct 31st, 2023
650
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.81 KB | None | 0 0
  1. namespace Prostokat
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             int a;
  8.             int b;
  9.             string imie;
  10.             Console.WriteLine("podaj imie: ");
  11.             imie = Console.ReadLine();
  12.  
  13.  
  14.  
  15.             Console.Write("podaj dlugosc boku a: ");
  16.             a = int.Parse(Console.ReadLine());
  17.             Console.Write("podaj dlugosc boku b: ");
  18.             b = int.Parse(Console.ReadLine());
  19.  
  20.             int pole = a * b;
  21.             int obwod = a * 2 + b * 2;
  22.             Console.Clear();
  23.             Console.WriteLine($"{imie}, oto twoje wyniki.\n");
  24.  
  25.             Console.WriteLine($"pole tego prostokata wynosi {pole}");
  26.             Console.WriteLine($"obwod tego prostokata wynosi {obwod}");
  27.  
  28.             Console.ReadKey();
  29.  
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement