itoa函数_c++ itoa

itoa函数_c++ itoa#include<stdio.h>#include<string.h>voiditoa(intn,chararr[1000],intm){if(n==0){arr[0]=’0′;return;

itoa函数_c++

itoa()函数是”stdlib.h”里面的一个函数,其功能是将制定数转换成自己想要的进制数并存入指定的数组中。

其格式为char *itoaint value, char *string,int radix);

#include<stdio.h>
#include<iostream>
#include<stack>
#include<map>
using namespace std;
const int maxn = 1e5+5;


void itoa(long long n,char *p,int m)
{
    char v[]={'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'};
    stack<char> s;
    if(n==0) *p++='0';
    while(n) s.push(v[n%m]),n/=m;
    while(!s.empty()) *p++=s.top(),s.pop();
    *p='\0';
}
char number[maxn];
int main()
{
    itoa(321313,number,16);
    cout<<number<<endl;
    return 0;
}
/*输出是4e721*/

今天的文章itoa函数_c++ itoa分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/78147.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注