Win7下装的VC6.0显示的已经安装成功,但运行起来总出现问题?
发布网友
发布时间:2023-05-26 15:40
我来回答
共2个回答
热心网友
时间:2024-12-11 01:10
syntax error : missing ';' before identifier 'replace'
这句意思是差标点','逗号,
fatal error C1004: unexpected end of file found
这句是没找到程序结束,在最后某处少了'}'花括号。
error C2501: 'string' : missing storage-class or type specifiers
除了需要包含string外还需要设置命名空间
using namespace std
string后面不加h,我也是win7每次运行都弹出不兼容的对话框,但程序还是能编译出来
并通过。还有疑问百度hi我 可以把你源程序发过来 我看下
热心网友
时间:2024-12-11 01:10
用你简化了的代码编译了下也出现了同样的问题,然后我将代码改成了下面这样:
#include <iostream>
#include <string>
using namespace std;
int main()
{
string sub;
cout<<"sub串:"<<endl;
cin>>sub;
cout<<sub<<endl;
return 0;
}
结果编译是通过的,程序能正常运行。我用的是win7旗舰版64位的操作系统