Q:

C# Program to Calculate Area of Rectangle

0

C# Program to Calculate Area of Rectangle

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

This program is compiled and tested on a Visual Studio 2012..

using System;

namespace TechStudyCSharp
{
    class Program
    {
        static void Main(string[] args)
        {

            double length, breadth, area;
            Console.WriteLine("Enter length of rectangle : ");
            length = Convert.ToDouble( Console.ReadLine());

            Console.WriteLine("Enter breadth of rectangle : ");
            breadth = Convert.ToDouble(Console.ReadLine());
            area = length * breadth;
            Console.WriteLine("\nArea of rectangle: " + area);          
            Console.ReadKey();
        }
    }
}

Result:

Enter length of rectangle : 

7

Enter breadth of rectangle : 

5

Area of rectangle: 35

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Program to convert days to years, weeks and day... >>
<< C# Program to Calculate Area of Square...