setprecision 设置精度
string str = to_string(ans);//c++11引入全局函数to_string
stringstream ss;
ss << setprecision(0) << ans;
str = ss.str();
setprecision 设置精度
string str = to_string(ans);//c++11引入全局函数to_string
stringstream ss;
ss << setprecision(0) << ans;
str = ss.str();