C++ 百炼成钢20
生活随笔
收集整理的這篇文章主要介紹了
C++ 百炼成钢20
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
題目56:
編寫C++程序完成以下功能:
(1)定義一個Point類,其屬性包括點的坐標,提供計算兩點之間距離的方法;
(2)定義一個圓形類,其屬性包括圓心和半徑;
(3)創(chuàng)建兩個圓形對象,提示用戶輸入圓心坐標和半徑,判斷兩個圓是否相交,并輸出結果。
?
//點類聲明 #include<iostream> #pragma once //這句代碼相當于#ifndef MyP #define MyP #endif這三句代碼,都是為了防止重定義 //#ifndef MyP //#define MyP class MyPoint{ public://初始化點void Init(int x0, int y0);//計算距離double calculationdistance(MyPoint &mp1); private:int x;int y; }; // //#endif //點類的實現(xiàn) #include<iostream> #include"MyPoint.h"//初始化點 void MyPoint::Init(int x0, int y0){x = x0;y = y0; }double MyPoint::calculationdistance(MyPoint &mp1){double d =sqrt((x - mp1.x)*(x - mp1.x) + (y - mp1.y)*(y - mp1.y));return d; } //圓類聲明 #pragma onceclass MyCircle{ public:void Init(double x0, double y0, double r0);int jugdeintersect(MyCircle &mc1); private:double x;double y;double r; }; //圓類的實現(xiàn) #include<iostream> #include"MyCircle.h"using namespace std;void MyCircle::Init(double x0, double y0, double r0){x = x0;y = y0;r = r0; }int MyCircle::jugdeintersect(MyCircle &mc1){int ret = 0;double temp = 0.0, temp2=0.0;temp = sqrt((x - mc1.x)*(x - mc1.x) + (y - mc1.y)*(y - mc1.y));temp2 = r + mc1.r;if (temp>temp2){//表示兩圓不相交ret = 1;}return ret; } /* 編寫C++程序完成以下功能: (1)定義一個Point類,其屬性包括點的坐標,提供計算兩點之間距離的方法; (2)定義一個圓形類,其屬性包括圓心和半徑; (3)創(chuàng)建兩個圓形對象,提示用戶輸入圓心坐標和半徑,判斷兩個圓是否相交,并輸出結果。 */ #include<iostream> #include"MyCircle.h" #include"MyPoint.h"using namespace std;void main(){//定義兩個點//MyPoint mp1, mp2;//mp1.Init(1, 1);//mp2.Init(1, 2);//printf("兩點之間的距離%lf\n", mp1.calculationdistance(mp2));//定義兩個圓 MyCircle c1, c2;c1.Init(1, 1, 1);c2.Init(1, 4, 1);if (c1.jugdeintersect(c2)){printf("兩圓不相交\n");}else{printf("兩圓相交\n");}system("pause"); }?
轉載于:https://www.cnblogs.com/zhanggaofeng/p/5593331.html
總結
以上是生活随笔為你收集整理的C++ 百炼成钢20的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Selenium对于对话框alert,c
- 下一篇: appcon 图标打包