站长网 安全 《数据结构》 实验2

《数据结构》 实验2

#include iostream using namespace std; class test { double x; double y; public: test(double A); test(double a,double b); }; test :: test(double A) { cout”这个数字是:”endl; } test::test(double a,double b) { x=a+b; y=a*b; } int main() { d

#include <iostream>

using namespace std;

class test

{

double x;

double y;

public:

test(double A);

test(double a,double b);

};

test :: test(double A)

{

cout<<“这个数字是:”<<endl;

}

test::test(double a,double b)

{

x=a+b;

y=a*b;

}

int main()

{

double x,y,a,b;

test(3.5,8.5);

cout<<“请输入两个数”<<endl;

cin>>a>>b;

x=a+b;

y=a*b;

cout<<a<<“+”<<b<<“=”<<x<<endl;

cout<<a<<“*”<<b<<“=”<<y<<endl;

return 0;

}

《数据结构》 实验2

本文来自网络,不代表站长网立场,转载请注明出处:https://www.zwzz.com.cn/html/fuwuqi/anquan/2021/0524/5685.html

作者: dawei

【声明】:站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。
联系我们

联系我们

0577-28828765

在线咨询: QQ交谈

邮箱: xwei067@foxmail.com

工作时间:周一至周五,9:00-17:30,节假日休息

返回顶部