mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
10 lines
322 B
C#
10 lines
322 B
C#
|
|
using Packt.Shared;
|
|||
|
|
|
|||
|
|
Rectangle r = new(height: 3, width: 4.5);
|
|||
|
|
WriteLine($"Rectangle H: {r.Height}, W: {r.Width}, Area: {r.Area}");
|
|||
|
|
|
|||
|
|
Square s = new(5);
|
|||
|
|
WriteLine($"Square H: {s.Height}, W: {s.Width}, Area: {s.Area}");
|
|||
|
|
|
|||
|
|
Circle c = new(radius: 2.5);
|
|||
|
|
WriteLine($"Circle H: {c.Height}, W: {c.Width}, Area: {c.Area}");
|