真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用C/C++怎么實(shí)現(xiàn)進(jìn)制相互轉(zhuǎn)換

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)使用C/C++怎么實(shí)現(xiàn)進(jìn)制相互轉(zhuǎn)換,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

創(chuàng)新互聯(lián)建站專業(yè)為企業(yè)提供德清網(wǎng)站建設(shè)、德清做網(wǎng)站、德清網(wǎng)站設(shè)計(jì)、德清網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、德清企業(yè)網(wǎng)站模板建站服務(wù),十年德清做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。

其它進(jìn)制轉(zhuǎn)為十進(jìn)制

在實(shí)現(xiàn)這個(gè)需求之前,先簡單介紹一個(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

用法參考

#include 
#include 
#include 
 
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
#include
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<

Output

15

十進(jìn)制轉(zhuǎn)為其他進(jìn)制

目前沒有找到可以使用的庫函數(shù)來方便的實(shí)現(xiàn)這個(gè)需求,所以自己實(shí)現(xiàn)了一下,具體請(qǐng)參考代碼:

#include
#include
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é)果:"<

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

上述就是小編為大家分享的使用C/C++怎么實(shí)現(xiàn)進(jìn)制相互轉(zhuǎn)換了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


本文題目:使用C/C++怎么實(shí)現(xiàn)進(jìn)制相互轉(zhuǎn)換
當(dāng)前網(wǎng)址:http://weahome.cn/article/jheooj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部