本文介绍了C ++的复数,什么是正确的格式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想使用带有复数的C ++。因此,我包括 #include< complex>
。现在我的问题是:我如何声明一个变量(所以什么格式叫做让我们说: 1 + i
?)
I want to use C++ with complex numbers. Therefore I included #include <complex>
. Now my question is: How do I declare a variable?(so what is the format called for let's say: 1 + i
?)
提前感谢: - )
推荐答案
// 1 + 2i
std::complex<double> c(1, 2);
这篇关于C ++的复数,什么是正确的格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!