visual c++2008启动调试老是弹出“发生生成错误,要继续并运行上次成功的生成吗”是怎么回事,高手帮忙!
1>------已启动生成:项目:55,配置:DebugWin32------1>正在嵌入清单...1>.\Debug\55.exe.intermediate.manif...
1>------ 已启动生成: 项目: 55, 配置: Debug Win32 ------
1>正在嵌入清单...
1>.\Debug\55.exe.intermediate.manifest : general error c1010070: Failed to load and parse the manifest. {_~0v
1>生成日志保存在“file://c:\Users\yl\Documents\Visual Studio 2008\Projects\55\55\Debug\BuildLog.htm”
1>55 - 1 个错误,0 个警告
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========
# include <iostream>
using namespace std;
int main()
{float x=12.345;
int y=100;
cout<<x*y<<endl;
y=x*y;
cout<<y<<endl;
return 0;
}
写的是这个,有问题吗 展开
1>正在嵌入清单...
1>.\Debug\55.exe.intermediate.manifest : general error c1010070: Failed to load and parse the manifest. {_~0v
1>生成日志保存在“file://c:\Users\yl\Documents\Visual Studio 2008\Projects\55\55\Debug\BuildLog.htm”
1>55 - 1 个错误,0 个警告
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========
# include <iostream>
using namespace std;
int main()
{float x=12.345;
int y=100;
cout<<x*y<<endl;
y=x*y;
cout<<y<<endl;
return 0;
}
写的是这个,有问题吗 展开
2个回答
2009-09-26
展开全部
这样就可以了
#include <iostream>
using namespace std;
void main()
{
double x=12.345;
int y=100;
cout<<x*y<<endl;
y=(int)(x*y);
cout<<y<<endl;
}
#include <iostream>
using namespace std;
void main()
{
double x=12.345;
int y=100;
cout<<x*y<<endl;
y=(int)(x*y);
cout<<y<<endl;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询