如何添加<complex.h> 我的c++6.0好像没有这个。怎么添加啊? 谢谢好心人指导,本人新手。
这是错误提示:--------------------Configuration:2.17-Win32Debug--------------------Compiling...
这是错误提示:
--------------------Configuration: 2.17 - Win32 Debug--------------------
Compiling...
2.17.c
e:\程序\c语言\2.17.c(2) : fatal error C1083: Cannot open include file: 'complex.h': No such file or directory
执行 cl.exe 时出错.
2.17.obj - 1 error(s), 0 warning(s)
不懂啊。 展开
--------------------Configuration: 2.17 - Win32 Debug--------------------
Compiling...
2.17.c
e:\程序\c语言\2.17.c(2) : fatal error C1083: Cannot open include file: 'complex.h': No such file or directory
执行 cl.exe 时出错.
2.17.obj - 1 error(s), 0 warning(s)
不懂啊。 展开
3个回答
展开全部
complex.h 这个文件在不是Microsoft的,它是borland写的,内容很简单,如下:
/**************************************************************************
* Wrapper header file used to select STL via defines.
* Default is STLport.
**************************************************************************/
/*
* C/C++ Run Time Library - Version 11.0
*
* Copyright (c) 2002 by Borland Software Corporation
* All Rights Reserved.
*
*/
#ifdef _USE_OLD_RW_STL
# include <oldstl\complex.h>
#else
# include <stlport\complex>
#endif
/**************************************************************************
* Wrapper header file used to select STL via defines.
* Default is STLport.
**************************************************************************/
/*
* C/C++ Run Time Library - Version 11.0
*
* Copyright (c) 2002 by Borland Software Corporation
* All Rights Reserved.
*
*/
#ifdef _USE_OLD_RW_STL
# include <oldstl\complex.h>
#else
# include <stlport\complex>
#endif
展开全部
把源文件的扩展名从.c改成.cpp
complex文件是存在的(没有.h的扩展名),它已经是STL的标准部分了
#include <complex>
using namespace std;
complex文件是存在的(没有.h的扩展名),它已经是STL的标准部分了
#include <complex>
using namespace std;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include < complex>
.......
.......
using namespace std;
......
void main()
{
.....
}
修改头文件的名字#include < complex.h> 为#include < complex>
.......
.......
using namespace std;
......
void main()
{
.....
}
修改头文件的名字#include < complex.h> 为#include < complex>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询