为了账号安全,请及时绑定邮箱和手机立即绑定

可以具体点不?不是很明白啊~

可以具体点不?不是很明白啊~

C++
慕尼黑8549860 2022-12-18 12:08:34
int main(){complex< double> m=(5,1);cout <<m;return 0;} 我输出的值为什么就只是 <1,0>对了, 还有就是 pair 类型的输出,比如, 如何一起输出这两个值pair< string, string > author( "James", "Joyce" );
查看完整描述

2 回答

?
守候你守候我

TA贡献1802条经验 获得超10个赞

因为你多写了一个 “=”,去掉就对了。 
输出pair只能重载<<操作符。

查看完整回答
反对 回复 2022-12-21
?
猛跑小猪

TA贡献1858条经验 获得超8个赞

complex<double>
The explicitly specialized template class describes an object that stores an ordered pair of objects both of type double, first representing the real part of a complex number and the second representing the imaginary part.
第一个改下:
complex< double> m(5,1.02);
cout <<m.imag()<<endl;
cout <<m.real();

pair< string, string > author( "James", "Joyce" );
cout<<author.first<<endl;
cout<<author.second<<endl;

查看完整回答
反对 回复 2022-12-21
  • 2 回答
  • 0 关注
  • 73 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信