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
#else
# include
#endif
#include < complex>
.......
.......
using namespace std;
......
void main()
{
.....
}
修改头文件的名字#include < complex.h> 为#include < complex>
把源文件的扩展名从.c改成.cpp
complex文件是存在的(没有.h的扩展名),它已经是STL的标准部分了
#include
using namespace std;