本例通过创建了一个控制台应用程序来计算长方体的周长、表面积、体积。程序比较简单,主要是理解用!
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cuboid_app
{
class Program
{
static void Main(string[] args)
{
Cuboid cuboid = new Cuboid();
int lenght = 0, width = 0, heigth = 0;
Console.WriteLine("请输入分别长方体的长宽高:");
lenght = Convert.ToInt32(Console.ReadLine());
width = Convert.ToInt32(Console.ReadLine());
heigth = Convert.ToInt32(Console.ReadLine());
cuboid.Length = lenght;
cuboid.Width = width;
cuboid.Height = heigth;
Console.WriteLine("此长方体的周长为:{0},表面积为:{1},体积