首页 > 代码库 > 圆柱体的表面积和体积
圆柱体的表面积和体积
// // Copyright (c) 2014级软件1班 // All rithts reseved. // 作者:A36 黄阿德 // 完成日期:2014年12月9日 // // 问题描述:创建一个程序来求圆柱体的表面积和体积 // 输出:表面积和体积 // using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication4 { class Program { static void Main(string[] args) { Cylinder coumn1 = new Cylinder();//创建对象 coumn1.height = 3.5;//引用类成员 coumn1.R = 3;//引用类成员 Console.WriteLine("体积:{0}", coumn1.Bulk()); Console.WriteLine("表面积:{0}", coumn1.Superficial()); Console.ReadKey(); } } class Cylinder { public double R;//定义函数R为圆柱体的圆的半径 public double height;//定义函数height圆柱体的高 public double Superficial()///定义函数Superficial { double lateral,S;//定义变量lateral:侧面积,S:圆底面积 double x=3.1415;//定义变量x:圆周率 lateral = (R + height) * 2; S = x * Math.Pow(R, 2); return lateral + S * 2; } public double Bulk() { double x = 3.1415;//定义变量S:圆底面积,x:圆周率 return x * Math.Pow(R, 2)*height; } } }
圆柱体的表面积和体积
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。