## to_string()函数 需要包含头文件,主要将数字转化为类型。 ```c++ #include using namespace std; int main(){ int i = 88; string result = to_string(i); return 0; } ```