标题:求助
只看楼主
kakaqq
Rank: 1
等 级:新手上路
威 望:1
帖 子:48
专家分:0
注 册:2008-10-7
 问题点数:0 回复次数:2 
求助
自己看书做的一道题目。可是运行结果不知道是什么东西啊。题目就是计算多项式的值。帮忙看看那错了。
#include <iostream.h>
#include <math.h>
struct node
{int zs,xs;
node* next;};
node *Tail_Create()
{
    node *head,*n,*tail;
    int i,j,m,a;
    head=NULL;
    cout<<"输入多项式项数";
    cin>>m;
    cout<<"输入多项式";
    for(a=0;a<m;a++)
    {   cin>>i>>j;
        n=new node;
        n->xs=i;
        n->zs=j;
        if(!head) tail=head=n;
        else tail->next=n,tail=n;
    }
    if(head) tail->next=NULL;
    return head;
}
sum(int x,node *head)
{
    double ggyy=0;
    while(head)
    {ggyy+=head->xs*pow(x,head->zs);
    head=head->next;}
    cout<<ggyy;
}

void main(void)
{
    node *head;
    int x;
    head=Tail_Create();
    cout<<"输入未知数x的值";
    cin>>x;
    cout<<sum(x,head);}
搜索更多相关主题的帖子: head next include return 多项式 
2008-10-09 19:20
blueboy82006
Rank: 5Rank: 5
来 自:幻想世界
等 级:贵宾
威 望:16
帖 子:1227
专家分:57
注 册:2007-7-23
得分:0 
你 sum 都没有返回值!
你cout<<sum(x,head);
能输出个什么????

2008-10-09 22:24
kakaqq
Rank: 1
等 级:新手上路
威 望:1
帖 子:48
专家分:0
注 册:2008-10-7
得分:0 
哦是了····多了···sum里面有cout,哎···脑袋不好使啊·
2008-10-10 19:17



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-237262-1-1.html




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

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