全文预览

201803考试批次《C井》(结课作业)

上传者:hnxzy51 |  格式:doc  |  页数:5 |  大小:58KB

文档介绍
         name = m;             blood = n;         } publicstring printname()         { Returnname;         } public stringprintblood()         { returnblood;         }     } }编写Test类,包含GetCircumference和GetArea方法,分别求矩形形的周长和面积,Main中根据键盘输入的长和宽,调用两个方法,最终显示结果。答:class Test { double width, height; public void Input() { Console.WriteLine("请输入矩形的长:"); height = Convert.ToDouble(Console.ReadLine()); Console.WriteLine("请输入矩形的宽:"); width = Convert.ToDouble(Console.ReadLine()); } public void GetCircumference()  { Console.WriteLine("周长为:" + 2 * width * height); } public void GetArea() { Console.WriteLine("面积为:" + width * height); } static void Main(string[] args) { Test a = new Test(); a.Input(); a.GetCircumference(); a.GetArea(); Console.ReadLine(); } }5.编写Test类包含Max,实现找出数组元素中最大值,并在Main中调用Max方法,最终显示的结果。

收藏

分享

举报
下载此文档