如何在Microsoft Visual Studio 2008编译 C++程序?
#include<iostream>intmain(){std::cout<<"Hellothere.\n";std::cout<<"Hereis5:"<<5<<"\n"...
#include <iostream>
int main()
{
std::cout<<"Hello there.\n";
std::cout<<"Here is 5: "<<5<<"\n";
std::cout<<"The manipulator std::endl ";
std::cout<<"writes a new line to the screen.";
std::cout<<std::endl;
std::cout<<"Here is a very big number:\t"<<70000;
std::cout<<std::endl;
std::cout<<"Here is the sum of 8 and 5:\t";
std::cout<<8+5<<std::endl;
std::cout<<"Here's a fraction:\t\t";
std::cout<<(float)5/8<<std::endl;
std::cout<<"And a very very big number:\t";
std::cout<<(double)7000*7000<<std::endl;
std::cout<<"Don't forget to replace Name";
std::cout<<"with your name...\n";
std::cout<<"Name is a C++ programmer!\n";
return 0;
}
以上代码在C++6.0里编译没有问题,可在Microsoft Visual Studio 2008编译就会显示错误,还请各位大侠赐教啊,是不是我在C++里,用的模版错了?还请详细指点。 展开
int main()
{
std::cout<<"Hello there.\n";
std::cout<<"Here is 5: "<<5<<"\n";
std::cout<<"The manipulator std::endl ";
std::cout<<"writes a new line to the screen.";
std::cout<<std::endl;
std::cout<<"Here is a very big number:\t"<<70000;
std::cout<<std::endl;
std::cout<<"Here is the sum of 8 and 5:\t";
std::cout<<8+5<<std::endl;
std::cout<<"Here's a fraction:\t\t";
std::cout<<(float)5/8<<std::endl;
std::cout<<"And a very very big number:\t";
std::cout<<(double)7000*7000<<std::endl;
std::cout<<"Don't forget to replace Name";
std::cout<<"with your name...\n";
std::cout<<"Name is a C++ programmer!\n";
return 0;
}
以上代码在C++6.0里编译没有问题,可在Microsoft Visual Studio 2008编译就会显示错误,还请各位大侠赐教啊,是不是我在C++里,用的模版错了?还请详细指点。 展开
4个回答
展开全部
没问题,可能你没安装语言包
教你点小技巧吧
在头文件下面输入using namespace std;
然后在输出的时候直接使用cout<<……;
这样可以省很多力气
教你点小技巧吧
在头文件下面输入using namespace std;
然后在输出的时候直接使用cout<<……;
这样可以省很多力气
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我在我的Microsoft Visual Studio 2008里面编译没有问题,你自己在去试一遍
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
创建cpp文件以后,按快捷键ctrl+f7这是编译,然后按f5运行。关键是在资源文件里面创建cpp文件,试一试吧。程序没有问题的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询