这个c++程序的错误在哪里?

2024-12-02 17:43:20
推荐回答(4个)
回答1:

#include < iostream.h >
using namespace std;
int main( int argc, char argv[] )
{
cout<< "enter two number:" < int v1 = 0;
int v2 = 0;
cin >>v1 >>v2;
cout<< "the sum of " << v1 <<"+" <

回答2:

把代码复制粘贴上来我看看,不要截图

回答3:

程序本身没有问题,应该是编译器的问题。VC6虽然经典但已经有些过时了,存在很多兼容性问题,而且并不十分符合最新的C++标准,建议换个编译器(我用的VS2012、Dev C++)。

回答4:

vc6的问题。你就不能用新版本的么……