请问一个头文件的问题
因为本本不在身边.编码不能自己在VC中编译所以要请教一下这段是我书本上看到的.从我把书本看完到现在回头去看这编码
头文件是不是应该是#include<iostream.h>
#include<string.h>
如果是不是我想的那样又是为什么.很想解决啊!知道朋友请回复啊.
在线等答案
include<iostream>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"please input str"<<endl;
cin>>str;
cout<<"hello world"<<endl;
cout<<"this is my first program"<<endl;
cout<<"user input"<<str<<endl;
return 0;
}