using System;
namespace RectangleApplication
{
class Rectangle
{
double length;
double width;
public void Acceptdetails()
{
length = 4.5;
width = 3.5;
}
pubilc double GetArea()
{
return length*width;
}
pubilc void Display()
{
Console.WriteLine("Length:{0}",length);
Console.WriteLine("Width:{0}",width);
Console.WriteLine("Area:{0}",GetArea);
}
}
class ExecuteRectangle
{
static void Main (String[] args)
{
Rectangle r= new Rectangle();
r.Acceptdetails();
r.Display();
Console.ReadLine();
}
}
}
相关文章
- 03-08新手小白10分钟搭建树莓派NAS和KODI影音播放系统 (2)---软硬搭配干活不累
- 03-08关于2008R2停止服务后的注意事项
- 03-08NAS入门之——My Cloud EX2 Ultra通过USB连接外置硬盘
- 03-08goroutine上下文contxt语法
- 03-08Django框架总结2
- 03-08【VUE】2.渲染组件&重定向路由
- 03-08go语言基本语法
- 03-08Codeforces Round #286 (Div. 2) B. Mr. Kitayuta's Colorful Graph (二维并查集)
- 03-08Codeforces Round #358 (Div. 2) Alyona and the Tree
- 03-08cocos2d-3.0 Helloworld::onTouchMoved的处理机制的推測