编写一个算法,将非负的十进制整数转换为其他进制的数输出,10及其以上的数字从‘A’开始的字母表示
Posted resource143
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写一个算法,将非负的十进制整数转换为其他进制的数输出,10及其以上的数字从‘A’开始的字母表示相关的知识,希望对你有一定的参考价值。
编写一个算法,将非负的十进制整数转换为其他进制的数输出,10及其以上的数字从‘A’开始的字母表示。
要求:
1) 采用顺序栈实现算法;
2)从键盘输入一个十进制的数,输出相应的八进制数和十六进制数。
#include "stdio.h" #define StackSize 100 typedef char ElemType; typedef struct { ElemType data[StackSize]; int top; }SqStack; int trans(int d, int b, char string[]) { SqStack st; char ch; int r, i = 0; st.top = -1; if (b <= 1 || b > 36 || b == 10) { printf(" b is Error "); return 0; } while (d!=0) { r = d%b; ch = r + (r < 10 ? ‘0‘ : ‘A‘ - 10); st.top++; st.data[st.top] = ch; d /= b; } while (st.top != -1) { string[i++] = st.data[st.top]; st.top--; } string[i] = ‘ ‘; return 1; } void main() { char str[10]; int d, b, t; printf("输入一个整数:"); scanf_s("%d", &d); printf("转换为8进制后的数: "); t = trans(d, 8, str); if (t == 0) printf("Error!"); else printf("%s ", str); printf("转换为16进制后的数: "); t = trans(d, 16, str); if (t == 0) printf("Error!"); else printf("%s ", str); }
微信公众号 资源库resource
个人博客 www.resource143.com
以上是关于编写一个算法,将非负的十进制整数转换为其他进制的数输出,10及其以上的数字从‘A’开始的字母表示的主要内容,如果未能解决你的问题,请参考以下文章