VS 2008 Express [英] VS 2008 express

查看:87
本文介绍了VS 2008 Express的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在学习使用VS 2008 Express.我很困惑,甚至连遵循最简单的代码也不起作用.


#include< iostream>
使用命名空间std ;

int main()
{
cout<< 输入两个数字:" << endl;
int x,y;
cin>> x>> y;
int sum = x + y;
cout<< "总和" << x<< "和"<< y << "是"<< sum<< endl;

返回0;
}



我得到以下



1>.\ Debug \ number.exe.intermediate.manifest:一般错误c1010070:无法加载和解析清单.系统找不到指定的文件.
1>构建日志保存在"file://c:\ Documents and Settings \ ........ \ My Documents \ Visual Studio 2008 \ Projects \ number \ number \ Debug \ BuildLog.htm"
1>数字-1个错误,0个警告
===========构建:0成功,1失败,0向上迄今为止,已跳过0 ===========
但是,VS 6没问题.



>
我实际上很想用< vector>遇到类似的错误,然后用最简单的代码进行测试.编译器似乎无法识别它. Visual Studio 6可以很好地用于< vector>.



感谢您对问题的任何帮助.



I learning to use VS 2008 express. I am puzzled to see even the following simplest code not working.


#include <iostream>
using namespace std;

int main()
{
   cout << "Enter two numbers:" <<endl;
   int x, y;
   cin >> x >> y;
   int sum = x + y;
   cout << "The sum of " << x << " and " << y<< " is " <<sum<<endl;

   return 0;
}



I get the following error message:



1>.\Debug\number.exe.intermediate.manifest : general error c1010070: Failed to load and parse the manifest. The system cannot find the file specified.
1>Build log was saved at "file://c:\Documents and Settings\........\My Documents\Visual Studio 2008\Projects\number\number\Debug\BuildLog.htm"
1>number - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========




However, it is no problem with VS 6.



I actually wanted to test with the simplest code after I got similar error with <vector>. The compiler does not seem to recognize it. Visual Studio 6 works well for <vector>.



I appreciate any help with problem.



推荐答案

如何创建项目?


这篇关于VS 2008 Express的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆