问题及代码
Description
输入一个十进制数N,将它转换成R进制数输出。
Input
输入数据包含多个测试实例,每个测试实例包含两个整数N(32位整数)和R(2<=R<=16, R<>10)。
Output
为每个测试实例输出转换后的数,每个输出占一行。如果R大于10,则对应的数字规则参考16进制(比如,10用A表示,等等)。
Sample Input
7 2
23 12
-4 3
Sample Output
111
1B
-11
/*烟台大学计算机学院 2016
作者: 马春澎
完成日期:2016年12月22日 */
#include <stdio.h>
#include <stdlib.h>
void inverted(int);
int r;
int main()
{
int n;
while(scanf("%d %d",&n,&r)!=EOF)
{
if(n==0)
printf("0");
else if(n<0)
{
n=-n;
printf("-");
inverted(n);
}
else
inverted(n);
printf("\n");
}
return 0;
}
void inverted(int n)
{
int x;
if (n==0)
return;
{
inverted(n/r);
x=n%r;
if(x<10)
printf("%d",x);
else
printf("%c",'A'+x-10);
}
}
运算结果
知识点总结
函数递归方法的应用
学习心得
刚开始定义全局变量r后又在主函数里定义了r结果老是输出不了,不知道哪里错了,找了好久才找出错来,还是得细心啊。
十进制转R进制算法

本文介绍了一个将十进制数转换为任意R进制数(R在2到16之间)的C语言程序。该程序使用了递归方法进行转换,并能够正确处理负数。文章还分享了在实现过程中的调试经验。
1745

被折叠的 条评论
为什么被折叠?



