
Exercise 1
using System;
class Geometrical_Shape
{
double No_of_coordinates, Area;
string Color;
public void create()
{
Console.WriteLine("
Enter Number of Coordinates: ");
No_of_coordinates = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("
Enter the Area :");
Area
= Convert.ToDouble(Console.ReadLine());
Console.WriteLine("
Enter the Color :");
...