c语⾔中int与string互转
#include<bits/stdc++.h>
using namespace std;
string s;
c++string类型
int main(){
s="123";
int x=stoi(s);
printf("%d\b",x);
string ss=to_string(x);
cout<<ss<<endl;
printf("%s\n",ss.c_str());//注意c语⾔中的printf不能输出string,只能输出char[],如果要输出先.c_str()    return 0;
}
string转int,直接stoi()
int转string,to_string()

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。