进制转换器

Posted javier2018

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了进制转换器相关的知识,希望对你有一定的参考价值。

 1 /*
 2 进制转换器 
 3 P进制数x转为Q进制数z
 4 过程模拟,先转十进制再转目标进制 
 5 */
 6 #include<cstdio> 
 7 #include<algorithm>
 8 #include<stack>
 9 using namespace std;
10 int main(){
11     int p,q;
12     int x,y=0,z;
13     int a=1; 
14     stack<int> sta;
15     scanf("%d%d%d",&p,&q,&x);
16     while(x!=0) {
17         y = y + (x%10)*a;
18         x = x/10;
19         a = a * p;
20     }
21     do{
22         z = y % q;
23         sta.push(z);
24         y = y / q;
25     }while(y!=0);
26     while(!sta.empty()){
27         printf("%d",sta.top());
28         sta.pop();
29     }
30     return 0;
31 } 

 

以上是关于进制转换器的主要内容,如果未能解决你的问题,请参考以下文章

在代码片段中包含类型转换

sql 日期转换代码片段 - Dato,120,konvertere

php初步

android.view.InflateException:二进制 XML 文件第 15 行:二进制 XML 文件第 19 行:膨胀类片段时出错

HTML Bookmarklet模板:将任何JavaScript代码片段转换为Bookmarklet

go语言怎么将二进制转为字符串