抹布
精华
|
战斗力 鹅
|
回帖 0
注册时间 2005-1-16
|
// cc.cpp : 定义控制台应用程序的入口点。
//
#include \"stdafx.h\"
#include <iostream>
using namespace std;
随便搞了个
int _tmain(int argc, _TCHAR* argv[])
{
double *p;
p = new double[3];
for (int i=0; i<3; i++)
cin>>*(p+i);
for (int i=0; i<3; i++)
cout<<*(p+i)<<\" \";
delete p;
return 0;
}
1>------ 已启动全部重新生成: 项目: cc, 配置: Debug Win32 ------
1>正在删除项目“cc”(配置“Debug|Win32”)的中间文件和输出文件
1>正在编译...
1>stdafx.cpp
1>正在编译...
1>cc.cpp
1>正在编译资源清单...
1>Microsoft (R) Windows (R) Resource Compiler Version 6.1.6723.1
1>Copyright (C) Microsoft Corporation. All rights reserved.
1>正在链接...
1>正在嵌入清单...
1>Microsoft (R) Windows (R) Resource Compiler Version 6.1.6723.1
1>Copyright (C) Microsoft Corporation. All rights reserved.
1>生成日志保存在“file://c:\\Documents and Settings\\aps-lzi\\桌面\\cc\\cc\\Debug\\BuildLog.htm”
1>cc - 0 个错误,0 个警告
========== 全部重新生成: 成功 1 个,失败 0 个,跳过 0 个 ========== |
|