VC++的FFT快速傅里叶变换编程设计+流程图+源代码(8)
时间:2016-12-13 22:53 来源:毕业论文 作者:毕业论文 点击:次
#define AFX_STDAFX_H__AE3AD910_2C76_44B4_A864_1212C9114CAD__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers #include <iostream.h> // TODO: reference additional headers your program requires here //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_STDAFX_H__AE3AD910_2C76_44B4_A864_1212C9114CAD__INCLUDED_)
经过上述修改后,还需要修改test.cpp文件,该文件是程序的主要实现文件。双击test.cpp文件打开它,如下所示。 上述代码是创建新工程时自动生成的,该代码使用一条printf语句输出了字符串Hello world!。printf语句是C语言中的输出语句,C++中的输出语句则使用cout流。因此,需要将代码区中的printf语句修改为如下代码: cout<<"Hello world!"<<endl; 修改后的test.cpp文件如下所示。
// test1.cpp : Defines the entry point for the console application.
经过上述步骤就建立了一个输出字符串Hello world!的简单控制台应用程序。要想运行它还需要进行编译和链接。编译操作负责对源程序进行语法检查,然后生成目标代码。链接操作负责将目标代码和程序用到的库程序链接成可执行文件。在Visual Studio 6.0中,Builder菜单提供了编译、链接和执行程序的操作。
--------------------Configuration: test - Win32 Debug-------------------- test.obj - 0 error(s), 0 warning(s)
该输出内容表示检测到0个错误,0个警告,生成目标代码test.obj。 --------------------Configuration: test - Win32 Debug--------------------
test.exe - 0 error(s), 0 warning(s) |