0
How to create a c# program that calculates the areas of different shapes such as rectangle, circle, square?
your help will be highly appreciated
1 Respuesta
+ 1
Model each shape as a subclass of Shape and implement a .size method to each. How you calculate the sizes is more geometry than programming.