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

C#编程

开发平台:

Visual C++

  1. //**********************
  2. //**    ch11_6.cpp    **
  3. //**********************
  4. #include <iostream.h>
  5. #include <math.h>
  6. #include "point.h"
  7. void main()
  8. {
  9.   Point p;
  10.   double x,y;
  11.   for(;;){          //重复输入x和y轴分量,直到x分量值小于0
  12.     cout <<"Enter x and y:n";
  13.     cin >>x >>y;
  14.     if(x<0)
  15.       break;
  16.     p.Set(x,y);
  17.     cout <<"angle=" <<p.angle()
  18.       <<",radius=" <<p.radius()
  19.       <<",x offset=" <<p.xOffset()
  20.       <<",y offset=" <<p.yOffset() <<endl;   }
  21. }