2025-03-31 19:37:23 +08:00

48 lines
1.2 KiB
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*-----------------------------------------------------------------------
【程序设计】
-------------------------------------------------------------------------
题目在此程序中函数fun 的功能是:将十进制正整数m 转换成k(1<k<26)进制
并按位输出。例如若输入8 和2,则应输出1000
(即十进制数8 转换成二进制表示是1000)。
------------------------------------------------------------------------
注意:请勿改动程序中的其他内容,不能定义新变量。
----------------------------------------------------------------------*/
#include <stdio.h>
// 函数声明
void fun(int m, int k);
int main()
{
int m, k;
printf("【请输入十进制正整数m 和进制k1 < k < 26");
scanf("%d %d", &m, &k);
if (k <= 1 || k >= 26)
{
printf("错误k 的值必须在 2 到 25 之间。\n");
return 1;
}
fun(m, k);
return 0;
}
void fun(int m, int k)
{
char result[65];
int remainder, i;
int index = 63;
result[64] = '\0';
/**********Program**********/
while(m>0){
if(m%k<9){
result[index--] = m%k +48;
}else{
result[index--] = m%k -10+65;
}
m/=k;
}
index++;
for(;index <65;index++){
printf("%c",result[index]);
}
/********** End **********/
printf("\n");
}