码迷,mamicode.com
首页 > 其他好文 > 详细

使用complex对象

时间:2016-03-21 23:08:53      阅读:423      评论:0      收藏:0      [点我收藏+]

标签:

#include<iostream>
#include<string>
#include<complex>

using namespace std;
void main()
{
    complex <int> num1(3, 4);
    complex <float> num2(3.3, 4.5);
    string str1("real is ");
    string str2 = "imag is ";
    cout << str1 << num1.real() << "," <<str2<< num1.imag() << endl;
    cout << str1 << num2.real() << "," <<str2<< num2.imag() << endl;
}

运行结果:

技术分享

 

end

使用complex对象

标签:

原文地址:http://www.cnblogs.com/changbo/p/5304151.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!