1,输出小数点后7位
cout<<fixed<<setprecision(7)<<s<<endl;
2,编译错误
主函数要用int 返回值
3,动态定义数组
int *p=new int[len];
delete[] p;
4,截取字符串
string.sub(index,nums); index表示从某个下表开始,nums表示截取个数
5,如何将string类型的字符串转为char *
char c[20];
string s="1234"; strcpy(c,s.c_str());