ch6_5.cpp
Upload User: puke2000
Upload Date: 2022-07-25
Package Size: 912k
Code Size: 0k
Category:

CSharp

Development Platform:

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. }