两道C语言的题,哪位高人指点一下, 不胜感激之致!!!

2024年11月17日 01:42
有1个网友回答
网友(1):

main()
{ /*进制转换*/
int m,n,i=0,j,a[20];
printf("enter the number you want to convert:\n");
scanf("%d",&n);
printf("enter the number you want to be converted to be:\n");
scanf("%d",&m);
do
{
i++;
a[i]=n%m;
n=n/m;

}while(n!=0);
for(j=i;j>=1;j--)
printf(" %d",a[j]);

getch();

}