| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 480 人关注过本帖
标题:一个链表问题求高手找错
只看楼主 加入收藏
红糖水
Rank: 2
等 级:论坛游民
帖 子:42
专家分:11
注 册:2013-2-3
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:1 
一个链表问题求高手找错
#include <iostream>
#include <string>
using namespace std;
class student
{
    public:
    student();
    void aver(int math,int english,int c,int computer);
    void showdate();
    student *next;
    private:
    string name;
    string sex;
    int ID;
    int math;
    int english;
    int c;
    int computer;
    int average;
};
student::student()
{
    cin>>name>>sex>>ID>>math>>english>>c>>computer;
    aver(math,english,c,computer);
}
void student::aver(int math,int english,int c,int computer)
{
    average=(math+english+c+computer)/4;
}
void student::showdate()
{
    cout<<name<<sex<<ID<<math<<english<<c<<computer<<average;
}
int main()
{
    student *head,*p1,*p2;
    int n;
    cout<<"Please Input the Number of Students:\n";
    cin>>n;
    cout<<"Please input"<< n <<"student info: Name  ID  Sex  Math  English  C  Computer"<<endl;
    p1=new student;
    head=NULL;
    p2=p1;
    for(int i=1;i<=n;i++)
    {
        if(head==NULL)
            head=p1;
        else
            p2->next=p1;
        p2=p1;
        p1=new student;
    }
    p2->next=NULL;
    for(int i=1;i<=n;i++)
    {
        head->showdate();
        head=head->next;
    }
    delete []p1;
}
搜索更多相关主题的帖子: computer english private average include 
2013-04-26 20:29
邓士林
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:淮河河畔
等 级:贵宾
威 望:61
帖 子:2392
专家分:13384
注 册:2013-3-3
收藏
得分:14 
cout<<"Please input"<< n <<"student info: Name  ID  Sex  Math  English  C  Computer"<<endl;
    p1=new student;
    head=NULL;
    p2=p1;
    for(int i=1;i<=n;i++)
    {
        if(head==NULL)
            head=p1;
        else
            p2->next=p1;
        p2=p1;
        p1=new student;
    }
    p2->next=NULL;
你这一部分都没有输入数据啊!你怎么往下进行的,另外还有几个个别小错误,给你修改了下:
#include <iostream>
#include <string>
using namespace std;
class student
{
    public:
    student();
    void aver(int math,int english,int c,int computer);
    void showdate();
    student *next;
    private:
    string name;
    string sex;
    int ID;
    int math;
    int english;
    int c;
    int computer;
    int average;
};
student::student()
{
    cin>>name>>sex>>ID>>math>>english>>c>>computer;
    aver(math,english,c,computer);
}
void student::aver(int math,int english,int c,int computer)
{
    average=(math+english+c+computer)/4;
}
void student::showdate()
{
    cout<<name<<sex<<ID<<math<<english<<c<<computer<<average;
}
int main()
{
    student *head,*p1,*p2;
    int n;
    cout<<"Please Input the Number of Students:\n";
    cin>>n;
    cout<<"Please input"<< n <<"student info: Name  ID  Sex  Math  English  C  Computer"<<endl;
    p1=new student;
    head=NULL;
    p2=p1;
    for(int i=1;i<=n;i++)
    {
        if(head==NULL)
            head=p1;
        else
            p2->next=p1;
        p2=p1;
        p1=new student;
    }
    p2->next=NULL;
    for(i=1;i<=n;i++)
    {
        head->showdate();
        head=head->next;
    }
    delete []p1;
    return 0;
}

Maybe
2013-04-26 21:07
快速回复:一个链表问题求高手找错
数据加载中...
 
   



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

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