第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

請問使用#include<iostream.h>//構(gòu)造函數(shù)是進行初始化的,語法哪里有問題嗎?

請問使用#include<iostream.h>//構(gòu)造函數(shù)是進行初始化的,語法哪里有問題嗎?

慕仙森 2021-12-08 02:03:12
#include<iostream.h>//構(gòu)造函數(shù)是進行初始化的#include<math.h>class point{int x;int y;public:point(int m,int n)//構(gòu)造函數(shù){x=m;y=n;}int setx(){cout<<"please input x:";cin>>x;return x;}int sety(){cout<<"please input y:";cin>>y;return y;}void show(){cout<<"point("<<x<<","<<y<<")"<<endl;}friend int point::getTriange(point p1,point p2,point p3);};class Triangle{point p1;point p2;point p3;public:int getTriange(point p1,point p2,point p3){return (sqrt((p1.x-p2.x)*(p1.x-p2.x)+(p1.y-p2.y)*(p1.y-p2.y))+sqrt((p1.x-p3.x)*(p1.x-p3.x)+(p1.y-p3.y)*(p1.y-p3.y))+sqrt((p2.x-p3.x)*(p2.x-p3.x)+(p2.y-p3.y)*(p2.y-p3.y)));}void showc()//輸出三個坐標{p1.show();p2.show();p3.show();}};void main(){point p1(1,1);point p2(2,2);point p3(3,3);//a.setx();//a.sety();p1.show();p2.show();p3.show();Triangle A;//定義一個三角形變量AA.getTriange();A.showc();}哪里出現(xiàn)錯誤了
查看完整描述

1 回答

?
紅糖糍粑

TA貢獻1815條經(jīng)驗 獲得超6個贊

不知你想要驗證什么,給你改得能運行了:
#include<iostream.h>//構(gòu)造函數(shù)是進行初始化的
#include<math.h>

class point{
int x;
int y;
public:
point(int m=0,int n=0)//構(gòu)造函數(shù)
{
x=m; y=n;
}
void setx()
{
cout<<"please input x:";
cin>>x;
// return x;
}
void sety()
{
cout<<"please input y:";
cin>>y;
// return y;
}
void show()
{
cout<<"point("<<x<<","<<y<<")"<<endl;
}
friend class Triangle;
};

class Triangle{
point p1;
point p2;
point p3;
public:
double getTriange()
{
return (sqrt((p1.x-p2.x)*(p1.x-p2.x)+(p1.y-p2.y)*(p1.y-p2.y))+sqrt((p1.x-p3.x)*(p1.x-p3.x)+(p1.y-p3.y)*(p1.y-p3.y))+sqrt((p2.x-p3.x)*(p2.x-p3.x)+(p2.y-p3.y)*(p2.y-p3.y)));
}
void showc()//輸出三個坐標
{
p1.show();
p2.show();
p3.show();
}
};

void main()
{
point p1(1,1);
point p2(2,2);
point p3(3,3);
//a.setx();
//a.sety();
p1.show();
p2.show();
p3.show();
Triangle A;//定義一個三角形變量A
A.getTriange();
A.showc();
}



查看完整回答
反對 回復(fù) 2021-12-12
  • 1 回答
  • 0 關(guān)注
  • 264 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號