using System; namespace task.lmcjl.com { class Demo { static void Main(string[] args){ Rectangle Obj = new Rectangle(); Obj.width = 5.5; Obj.length = 3; Obj.Display(); Console.ReadLine(); } } class Rectangle { // 成员变量 public double width, length; public double GetArea(){ return width * length; } public void Display(){ Console.WriteLine("长方形的长:{0}", length); Console.WriteLine("长方形的宽:{0}", width); Console.WriteLine("长方形的面积:{0}", GetArea()); } } }运行结果如下:
长方形的长:3
长方形的宽:5.5
长方形的面积:16.5
using System; namespace task.lmcjl.com { class Demo { static void Main(string[] args){ Rectangle Obj = new Rectangle(); Obj.AcceptDetails(); Obj.Display(); Console.ReadLine(); } } class Rectangle { // 成员变量 private double width, length; public void AcceptDetails(){ Console.WriteLine("请输入长方形的长度: "); length = Convert.ToDouble(Console.ReadLine()); Console.WriteLine("请输入长方形的宽度: "); width = Convert.ToDouble(Console.ReadLine()); } public double GetArea(){ return width * length; } public void Display(){ Console.WriteLine("长方形的长:{0}", length); Console.WriteLine("长方形的宽:{0}", width); Console.WriteLine("长方形的面积:{0}", GetArea()); } } }运行结果如下:
请输入长方形的长度:
12.3
请输入长方形的宽度:
23.4
长方形的长:12.3
长方形的宽:23.4
长方形的面积:287.82
using System; namespace task.lmcjl.com { class Demo { static void Main(string[] args){ Rectangle Obj = new Rectangle(); Obj.length = 33.3; Obj.width = 22.2; Obj.Display(); Console.ReadLine(); } } class Rectangle { // 成员变量 internal double width, length; double GetArea(){ return width * length; } public void Display(){ Console.WriteLine("长方形的长:{0}", length); Console.WriteLine("长方形的宽:{0}", width); Console.WriteLine("长方形的面积:{0}", GetArea()); } } }运行结果如下:
长方形的长:33.3
长方形的宽:22.2
长方形的面积:739.26
本文链接:http://task.lmcjl.com/news/18263.html