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

C#编程

开发平台:

Visual C++

  1. //*********************
  2. //**    ch6_5.cpp    **
  3. //**    主函数       **
  4. //*********************
  5. #include <iostream.h>
  6. #include "myarea.h"
  7. void main()
  8. {
  9.   double width,length;
  10.   cout <<"please enter two numbers:n";
  11.   cin >>width >>length;
  12.   cout <<"area of rectangle is " <<rect(width,length) <<endl;
  13.   double radius;
  14.   cout <<"please enter a radius:n";
  15.   cin >>radius;
  16.   cout <<"area of circle is " <<circle(radius) <<endl;
  17. }