c语言,求将一个十进制的数转化为一个任意进制的数。求解决我的程序的问题,谢啦。
#include<stdio.h>#include<conio.h>#include<malloc.h>structnode{intdata;structnode*lin...
#include<stdio.h>
#include<conio.h>
#include<malloc.h>
struct node{
int data;
struct node*link;
};
struct node*top=NULL;
void jinzhizuanhuan(int,int);
void display();
void main(){
int a,b;
printf("请输入你想要转换的数和要转换的进制:\n");
scanf("%d,%d",&a,&b);
jinzhizuanhuan(a,b);
display();
}
void jinzhizuanhuan(int n,int m )
{struct node*temp;
temp=(struct node*)malloc(sizeof(struct node));
if(temp==NULL)
printf("\n栈已满.");
while(n!=0)
{temp->data=n%m;
temp->link=top;
top=temp;
n=n/m;
}
}
void display()
{struct node*top1;
int item;
top1=top;
if(top1=NULL)
return;
while(top1!=NULL)
{item=top1->data;
printf("%d",item);
top1=top1->link;
}
} 展开
#include<conio.h>
#include<malloc.h>
struct node{
int data;
struct node*link;
};
struct node*top=NULL;
void jinzhizuanhuan(int,int);
void display();
void main(){
int a,b;
printf("请输入你想要转换的数和要转换的进制:\n");
scanf("%d,%d",&a,&b);
jinzhizuanhuan(a,b);
display();
}
void jinzhizuanhuan(int n,int m )
{struct node*temp;
temp=(struct node*)malloc(sizeof(struct node));
if(temp==NULL)
printf("\n栈已满.");
while(n!=0)
{temp->data=n%m;
temp->link=top;
top=temp;
n=n/m;
}
}
void display()
{struct node*top1;
int item;
top1=top;
if(top1=NULL)
return;
while(top1!=NULL)
{item=top1->data;
printf("%d",item);
top1=top1->link;
}
} 展开
3个回答
展开全部
你说说你思路,你想把一个数转化为其他进位的数,你用链表干啥
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <stdio.h>
#include <stdlib.h>
int main()
{
int temp;
char bin[1000];
scanf("%d",&temp);
itoa(temp,bin,2);
printf("二进制:%s\n",bin);
return 0;
}
#include <stdlib.h>
int main()
{
int temp;
char bin[1000];
scanf("%d",&temp);
itoa(temp,bin,2);
printf("二进制:%s\n",bin);
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询