Computer Science, asked by kanishkaghosh52, 1 day ago

Create a project for calculating the area and perimeter of a circle in VisualBasic
Please give the correct answer and I will mark you as Brainliest

Answers

Answered by samarthkrv
0

Answer:

Module Module1

   Sub Main()

       Dim radius As Single = 0.0F

       Dim area As Single = 0.0F

       Console.Write("Enter the radius:")

       radius = Single.Parse(Console.ReadLine())

       area = 3.14F * radius * radius

       Console.WriteLine("Area of Circle: {0}",area)

   End Sub

End Module

Explanation:

Similar questions