博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
实验三
阅读量:5367 次
发布时间:2019-06-15

本文共 791 字,大约阅读时间需要 2 分钟。

#include
using namespace std;class rectangle {public: double area(double l,double w);private:double length,width;};double rectangle::area(double l,double w){length=l;width=w;return length*width;}int main(){rectangle Rectangle; double length,width;cin>>length>>width;cout<
<

#include
using namespace std;class Complex{ public: Complex(double r0,double i0){ real=r0; imaginary=i0; }; Complex(Complex &c0); void add(Complex &C0) void show(); private: double real,imaginary; };void Complex::add(Complex &c0){ real+=c0.real,imaginary+=c0.imaginary; }void Complex::show(){ cout<
<
<<'i'<

转载于:https://www.cnblogs.com/baiyixin/p/8747971.html

你可能感兴趣的文章
CSS: caption-side 属性
查看>>
CSS3中box-sizing的理解
查看>>
mysql导入source注意点
查看>>
linux下编译安装nginx
查看>>
DLL 导出函数
查看>>
windows超过最大连接数解决命令
查看>>
12个大调都是什么
查看>>
angular、jquery、vue 的区别与联系
查看>>
Intellij idea创建javaWeb以及Servlet简单实现
查看>>
代理网站
查看>>
Open multiple excel files in WebBrowser, only the last one gets activated
查看>>
FFmpeg进行视频帧提取&音频重采样-Process.waitFor()引发的阻塞超时
查看>>
最近邻与K近邻算法思想
查看>>
【VS开发】ATL辅助COM组件开发
查看>>
FlatBuffers In Android
查看>>
《演说之禅》I &amp; II 读书笔记
查看>>
thinkphp3.2接入支付宝支付接口(PC端)
查看>>
【转】在Eclipse中安装和使用TFS插件
查看>>
C#中Monitor和Lock以及区别
查看>>
【NOIP2017】奶酪
查看>>