程序运行总是出错,不知道为什么,请教各位帮忙
//getinfo.cpp--input and output#include<iostream>
int main()
{
using namespace std;
int carrots;
cout<<"how many carrots do you have?"<<endl;
cin>>carrots; //c++input
cout<< "here are two more.";
carrots=carrots+2;
//the next line concatenates output
cout<<"now you have"<<carrots<<"carrots."<<endl;
return 0;
}
这是我按书上编的一个程序,应该是不会错的,请各位大侠帮忙看看,我用的是microsoft visual studio 2008 .net的版本
首先有个问题,为什么每次生成的程序总是被VS显示为已经过时了,这是什么情况
运行之后显示有两个错误,不知道是什么错误。。。谁能帮忙
我是刚入门的那种,对C++的了解很浅,谢谢帮助哈!!!