整型转字符串
itoa(); 把整型数转换成字符串
函数名:
number为整型变量; s1为将整型转换为字符串后存储的目标数组; key为转换进制数(取值可为2,8,10,16)。
itoa(number,s1,key);//在<stdlib.h>
eg:
L———R的数转换为2进制有多少个1.
#include<bits/stdc++.h>
using namespace std;
int cnt;
int main()
{
int L,R;
cin>>L>>R;
char num[25]={'0','0','0'};
for(int i=L;i<=R;i++)
{
itoa(i,num,2);
for(int j=0;j<strlen(num);j++)
{
if(num[j]=='1') cnt++;
}
清零
for(int m=0;m<25;m++)
{
num[m]='0';
}
}
cout<<cnt;
return 0;
}
字符串转整型
atoi(); 把字符串转换成整型数
char s2[10]="12345";
int k;
k=atoi(s2);
cout<<k;