请人编译C++, 在 线 等
#include<iostream>
#include<string>
using std::cout;
using std::cin;
using std::endl;
using std::string;
int main(){
string first; //srores the first name
string second; //stores the second name
cout<<endl<<"输入你的姓: ";
cin>>first; //read first name
cout<<"输入你的名: ";
cin>>second; //read second name
string sentence = "你的全名: "; //create basic sentence
sentence += first +" "+second +".";
cout<<endl
<<sentence
<<endl;
cout<<"the string contains"
<<sentence.length( )
<<"characters."
<<endl;
system("pause");
return 0;
}