belongs to collection: C# Language Basic programs with examples
C# Program to Calculate Area of Rectangle
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
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
This program is compiled and tested on a Visual Studio 2012..
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