数据结构实验之栈一:进制转换

来源:互联网 发布:java写hello world 编辑:程序博客网 时间:2024/06/06 20:29

Problem Description

输入一个十进制整数,将其转换成对应的R(2<=R<=9)进制数,并输出。

Input

第一行输入需要转换的十进制数;
第二行输入R。

Output

输出转换所得的R进制数。

Example Input

12798

Example Output

2377
 
 

#include<stdio.h>int main(){    int a[1001]={0};    int i,n,m;    int top;    scanf("%d%d",&n,&m);    top=0;    while(n!=0)    {        a[++top]= n%m;        n/=m;    }    while(top)    {        printf("%d",a[top--]);    }    return 0;}

 

0 0