2_8.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //----------------------------------------
  2. #include <iostream.h>
  3. #include <math.h>
  4. //----------------------------------------
  5. double Cylinder(double r, double h);
  6. //----------------------------------------
  7. void main()
  8. {
  9.   double radius, height;
  10.   cout <<"请输入圆柱体的半径和高:n";
  11.   cin >>radius >>height;
  12.   double volume = Cylinder(radius, height);
  13.   cout <<"该圆柱体的体积为:" <<volume <<endl;
  14. }
  15. //----------------------------------------
  16. double Cylinder(double r, double h)
  17. {
  18.   return r*r*M_PI*h;
  19. }
  20. //----------------------------------------