輕松實(shí)現(xiàn)C/C++各種常見進(jìn)制相互轉(zhuǎn)換
其它進(jìn)制轉(zhuǎn)為十進(jìn)制
在實(shí)現(xiàn)這個(gè)需求之前,先簡(jiǎn)單介紹一個(gè)c標(biāo)準(zhǔn)庫中的一個(gè)函數(shù):
long strtol( const char *str, char **str_end, int base);
參數(shù)詳細(xì)說明請(qǐng) 參考文檔
注意:這個(gè)函數(shù)在c標(biāo)準(zhǔn)庫stdlib中,所以需要 #include<cstdlib>
用法參考
#include <stdio.h> #include <errno.h> #include <stdlib.h> int main(void) { // parsing with error handling const char *p = "10 200000000000000000000000000000 30 -40 junk"; printf("Parsing '%s':\n", p); char *end; for (long i = strtol(p, &end, 10);p != end;i = strtol(p, &end, 10)) { printf("'%.*s' -> ", (int)(end-p), p); p = end; if (errno == ERANGE){ printf("range error, got "); errno = 0; } printf("%ld\n", i); } // parsing without error handling printf("\"1010\" in binary --> %ld\n", strtol("1010",NULL,2)); printf("\"12\" in octal --> %ld\n", strtol("12",NULL,8)); printf("\"A\" in hex --> %ld\n", strtol("A",NULL,16)); printf("\"junk\" in base-36 --> %ld\n", strtol("junk",NULL,36)); printf("\"012\" in auto-detected base --> %ld\n", strtol("012",NULL,0)); printf("\"0xA\" in auto-detected base --> %ld\n", strtol("0xA",NULL,0)); printf("\"junk\" in auto-detected base --> %ld\n", strtol("junk",NULL,0)); }
Output
Parsing '10 200000000000000000000000000000 30 -40 junk': '10' -> 10 ' 200000000000000000000000000000' -> range error, got 9223372036854775807 ' 30' -> 30 ' -40' -> -40 "1010" in binary --> 10 "12" in octal --> 10 "A" in hex --> 10 "junk" in base-36 --> 926192 "012" in auto-detected base --> 10 "0xA" in auto-detected base --> 10 "junk" in auto-detected base --> 0
更多詳細(xì)說明請(qǐng) 參考文檔
接下來使用這個(gè)函數(shù)來實(shí)現(xiàn)其它進(jìn)制轉(zhuǎn)為十進(jìn)制的需求,具體請(qǐng)參考代碼:
#include<iostream> #include<cstdlib> using namespace std; int main(){ //把8進(jìn)制的17轉(zhuǎn)化為10進(jìn)制打印輸出 string str = "17"; char *tmp ; long result = strtol(str.c_str(),&tmp,8); cout<<result; return 0; }
Output
15
十進(jìn)制轉(zhuǎn)為其他進(jìn)制
目前沒有找到可以使用的庫函數(shù)來方便的實(shí)現(xiàn)這個(gè)需求,所以自己實(shí)現(xiàn)了一下,具體請(qǐng)參考代碼:
#include<iostream> #include<algorithm> using namespace std; //digital為10進(jìn)制數(shù),r為需要轉(zhuǎn)換的目標(biāo)進(jìn)制,返回目標(biāo)進(jìn)制數(shù) string dtox(int digital,int r){ string result=""; const char s[37]="0123456789abcdefghijklmnopqrstuvwxyz"; if(digital==0){ return "0"; } while(digital!=0){ int tmp =digital%r; result+=s[tmp]; digital/=r; } reverse(result.begin(),result.end()); return result; } int main(){ cout<<"十進(jìn)制10轉(zhuǎn)為16進(jìn)制結(jié)果:"<<dtox(10,16)<<endl; cout<<"十進(jìn)制10轉(zhuǎn)為8進(jìn)制結(jié)果:"<<dtox(10,8)<<endl; cout<<"十進(jìn)制10轉(zhuǎn)為2進(jìn)制結(jié)果:"<<dtox(10,2)<<endl; cout<<"十進(jìn)制10轉(zhuǎn)為10進(jìn)制結(jié)果:"<<dtox(10,10)<<endl; }
Output:
十進(jìn)制10轉(zhuǎn)為16進(jìn)制結(jié)果:a 十進(jìn)制10轉(zhuǎn)為8進(jìn)制結(jié)果:12 十進(jìn)制10轉(zhuǎn)為2進(jìn)制結(jié)果:1010 十進(jìn)制10轉(zhuǎn)為10進(jìn)制結(jié)果:10
實(shí)現(xiàn)效果還算理想,另外,這個(gè)函數(shù)還可以把10進(jìn)制數(shù)轉(zhuǎn)化為不常用的其他進(jìn)制,不局限于2,8,10,16等常見進(jìn)制。但是r的有效范圍應(yīng)該為2-36。
另外,函數(shù)并沒有考慮負(fù)數(shù)以及浮點(diǎn)數(shù),r不合法的情況
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持我們。
上一篇:C語言實(shí)現(xiàn)經(jīng)典24點(diǎn)紙牌益智游戲
欄 目:C語言
下一篇:C++實(shí)現(xiàn)簡(jiǎn)易萬年歷
本文標(biāo)題:輕松實(shí)現(xiàn)C/C++各種常見進(jìn)制相互轉(zhuǎn)換
本文地址:http://mengdiqiu.com.cn/a1/Cyuyan/150.html
您可能感興趣的文章
- 04-02c語言沒有round函數(shù) round c語言
- 01-10數(shù)據(jù)結(jié)構(gòu)課程設(shè)計(jì)-用棧實(shí)現(xiàn)表達(dá)式求值的方法詳解
- 01-10使用OpenGL實(shí)現(xiàn)3D立體顯示的程序代碼
- 01-10深入理解C++中常見的關(guān)鍵字含義
- 01-10求斐波那契(Fibonacci)數(shù)列通項(xiàng)的七種實(shí)現(xiàn)方法
- 01-10C語言 解決不用+、-、&#215;、&#247;數(shù)字運(yùn)算符做加法
- 01-10使用C++實(shí)現(xiàn)全排列算法的方法詳解
- 01-10c++中inline的用法分析
- 01-10用C++實(shí)現(xiàn)DBSCAN聚類算法
- 01-10深入全排列算法及其實(shí)現(xiàn)方法


閱讀排行
- 1C語言 while語句的用法詳解
- 2java 實(shí)現(xiàn)簡(jiǎn)單圣誕樹的示例代碼(圣誕
- 3利用C語言實(shí)現(xiàn)“百馬百擔(dān)”問題方法
- 4C語言中計(jì)算正弦的相關(guān)函數(shù)總結(jié)
- 5c語言計(jì)算三角形面積代碼
- 6什么是 WSH(腳本宿主)的詳細(xì)解釋
- 7C++ 中隨機(jī)函數(shù)random函數(shù)的使用方法
- 8正則表達(dá)式匹配各種特殊字符
- 9C語言十進(jìn)制轉(zhuǎn)二進(jìn)制代碼實(shí)例
- 10C語言查找數(shù)組里數(shù)字重復(fù)次數(shù)的方法
本欄相關(guān)
- 04-02c語言函數(shù)調(diào)用后清空內(nèi)存 c語言調(diào)用
- 04-02func函數(shù)+在C語言 func函數(shù)在c語言中
- 04-02c語言的正則匹配函數(shù) c語言正則表達(dá)
- 04-02c語言用函數(shù)寫分段 用c語言表示分段
- 04-02c語言中對(duì)數(shù)函數(shù)的表達(dá)式 c語言中對(duì)
- 04-02c語言編寫函數(shù)冒泡排序 c語言冒泡排
- 04-02c語言沒有round函數(shù) round c語言
- 04-02c語言分段函數(shù)怎么求 用c語言求分段
- 04-02C語言中怎么打出三角函數(shù) c語言中怎
- 04-02c語言調(diào)用函數(shù)求fibo C語言調(diào)用函數(shù)求
隨機(jī)閱讀
- 08-05dedecms(織夢(mèng))副欄目數(shù)量限制代碼修改
- 04-02jquery與jsp,用jquery
- 01-11ajax實(shí)現(xiàn)頁面的局部加載
- 08-05DEDE織夢(mèng)data目錄下的sessions文件夾有什
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 01-10C#中split用法實(shí)例總結(jié)
- 01-10delphi制作wav文件的方法
- 01-10使用C語言求解撲克牌的順子及n個(gè)骰子
- 08-05織夢(mèng)dedecms什么時(shí)候用欄目交叉功能?