求用C 編寫幾何圓形的類Circle,包括兩個屬性 圓心O和半徑R

時間 2021-05-14 08:21:01

1樓:匿名使用者

point類不用寫了吧,就兩個座標

class circle

point geto()

int getr()

void setr(int r)

void moveto(point p)

void seto(point p)

void display()

private:

point p;

int r;

}point類要過載運算子

編寫幾何圖形圓的類circle,包括兩個屬性:圓心o(另定義point(點)類實現)和半徑r。

2樓:匿名使用者

#include

using namespace std;

class point

float getx()

float gety()

void display();

private:

float x;

float y;

};void point::display()class circle

void display1();

private:

point point;

float r;

};void circle::display1()int main()

/*因為不明白你究竟想問什麼,我就只寫了你所要求的和簡單的輸出。

/*因為x,y是類point的私有成員,在類circle中要想使用它們,則需要point類中的成員函式呼叫,故:定義了getx()和gety()函式,

希望對你有幫助,已經除錯通過*/

c++課程設計求答案

3樓:匿名使用者

哦暈,全是程式設計題啊.老師留的作業啊,要想學到真本領,還是自己一點點做的.自己做的永遠印度最深.

不可偷機取巧.看別人編的,看一遍是記住了.可是睡一覺我敢保證你會忘記一半.

4樓:

你也太小氣了吧,這麼多道題,懸賞分才0分啊!

5樓:

給我一點時間我會努力解答的

6樓:素水雲兒

分開問,1題100,謝謝合作

7樓:匿名使用者

就是啊·太小氣了把3~~~~~~

8樓:

樓主也太懶了吧……建議以後不要這樣……

也建議大家以後對待此類問題持慎重態度……

c++題目,設計2個類

9樓:

第1題源程式如下:

#include

using namespace std;

class point

void setx(int xpos)

void sety(int ypos)

int getx()

int gety()

void moveto(int xpos,int ypos)void display()

point(int xpos,int ypos)void setx(int xpos)

void sety(int ypos)

int getx()

int gety()

void moveto(int xpos,int ypos)void display()

};class circle :public pointpoint geto()

int getr()

void moveto(point p)

void setr(int radious)void display()

};void main()

定義一個類:ccircle,兩個屬性:半徑和圓心,一個方法:求得面積!c++

10樓:井鈺

看看符合你要求不,要定義個面積方便點,你定義個圓心對求面積沒啥很大關係的

#include

using namespace std;

class ccircle

double calculate();

private:

float r;

double area;

};double ccircle::calculate()int main()

11樓:匿名使用者

class ccircle};

c++題:定義一個類circle,包含3個成員圓心x,y和半徑radius

12樓:mike生化剋星

#include"stdio.h"

#include"graphics.h"

#define pi 3.1415926;

class circle

void show()/*這個輸出圓的位置的東西我不知道你是要用圖形庫還是怎麼的,還有到底用什麼圖形庫。*/

void get_area()

private:int x,y,radius,area;}

13樓:

建議還是自己編寫 對將來寫程式有好處

既然已經知道了要求 就試著寫寫

c++設計一個圖形類:circle(圓);(1)circle類基本資訊:圓心座標、半徑;其中:資料成員為private

14樓:風一樣的丨少年

#define pi acos(-1.0)class circle

;void show(){

cout<<"圓心座標為:"<

c++定義一個circle類,含有私有變數半徑r,能初始化r,求圓環的面積

15樓:匿名使用者

class circle

float area();

private:

float r;};

16樓:匿名使用者

class ccircle

;ccircle::ccircle()

void ccircle::setradius(float r)float ccircle::getradius()float ccircle::getsize()

用C語言編寫2023年曆(急求,用C語言編寫2023年曆(急求!!!)

mfc 和 delphi嗎?你知道這樣沒有意義又很麻煩嗎 沒價值 自己動手修改乙個函式就好了 include include define days 366 struct calendar void createcal struct calendar year 建立2008年日曆 int findw...

求用c編寫,求用C 編寫1 n的平方和,如1的平方 2的平方 3的平方。。。 n的平方,n為需輸入的自然數。

這很簡單,乙個簡單的for迴圈就行 int sum 0 for n 0 n 說明 此for迴圈出來的sum就是所求的n的平方和。但有前提 前面需保證輸入的數n是正整數 console.write 請輸入n n為自然數 int num int.parse console.readline int su...

C語言程式設計,編寫程式,求10 用C語言

第0題 include define maxlen 70 main int i,temp,flag 0 printf 請輸入第一個字串 n scanf s s1 printf 請輸入第二個字串 n scanf s s2 i strlen s1 temp strlen s2 if i main x i...