| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 431 人关注过本帖
标题:我程序编完了,不会改。谁帮我改好了,我就把所有的分都给谁!
取消只看楼主 加入收藏
zitong1987611
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2008-4-18
收藏
 问题点数:0 回复次数:1 
我程序编完了,不会改。谁帮我改好了,我就把所有的分都给谁!
我的题目是:用链栈实现将十进制数转化为八进制数,我编完了,可我不会改啊,都改了无数个日夜了,还是改不好。有哪位好心的人能帮帮我啊?将不胜感激啊!。程序就在下面,帮帮忙,救救我吧,交不上程序我就挂了啊。呜呜呜呜呜
#include<stdio.h>
#include<math.h>
struct node
{
int data;
struct node *next;
}LinkStack;
void init_stack(struct node *top)
{
top->data='-1';
top->next=NULL;
}
int decide_empty(struct node  *top)
{
if(top->data=='-1')
return (1);
else
return (0);
}
void Enter_stack(struct *top,int x)
{  ;
 top=(LinkStack*)malloc(sizeof(LinkStack));
 top->data=x;
 top->next=top;
printf("\nOK!\n");
return(top);
}
int del_stack(struct *top)
{
if(top==NULL)
 {
  printf("\n栈为空!");
 }
 else
 {
top=top->next;
  free(top);
 }
}

main()
{
stacklist L;
int n,e;
L=init_stack(struct node *top);
printf("please input a decimal number:");
scanf("%d,&n");
if(n<=0)
printf("error due to the wrong input!\n");
while(n)
{
Enter_stack( L ,n%8);
n=n/8;
}
printf("the changed number is:\n");
while(decide_empty(L))
{
e=del_stack(L);
printf("%d",e);
}

}

[[it] 本帖最后由 zitong1987611 于 2008-4-19 11:57 编辑 [/it]]
搜索更多相关主题的帖子: top 不胜感激 include return 
2008-04-18 22:01
zitong1987611
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2008-4-18
收藏
得分:0 
我程序编完了,不会改。有谁能够帮帮我?我明天就要交作业了
我的题目是:用链栈实现将十进制数转化为八进制数,我编完了,可我不会改啊,都改了无数个日夜了,还是改不好。有哪位好心的人能帮帮我啊?将不胜感激!会把我所有的分都给你。程序就在下面,帮帮忙,救救我吧,交不上程序我就挂了啊。呜呜呜呜呜
#include<stdio.h>
#include<math.h>
struct node
{
int data;
struct node *next;
}LinkStack;
void init_stack(struct node *top)
{
top->data='-1';
top->next=NULL;
}
int decide_empty(struct node  *top)
{
if(top->data=='-1')
return (1);
else
return (0);
}
void Enter_stack(struct *top,int x)
{  ;
 top=(LinkStack*)malloc(sizeof(LinkStack));
 top->data=x;
 top->next=top;
printf("\nOK!\n");
return(top);
}
int del_stack(struct *top)
{
if(top==NULL)
 {
  printf("\n栈为空!");
 }
 else
 {
top=top->next;
  free(top);
 }
}

main()
{
stacklist L;
int n,e;
L=init_stack(struct node *top);
printf("please input a decimal number:");
scanf("%d,&n");
if(n<=0)
printf("error due to the wrong input!\n");
while(n)
{
Enter_stack( L ,n%8);
n=n/8;
}
printf("the changed number is:\n");
while(decide_empty(L))
{
e=del_stack(L);
printf("%d",e);
}

}
2008-04-18 22:11
快速回复:我程序编完了,不会改。谁帮我改好了,我就把所有的分都给谁!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015754 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved