鱼C论坛

 找回密码
 立即注册
查看: 1115|回复: 2

[已解决]输出没有结果

[复制链接]
发表于 2023-10-26 17:22:10 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<iostream>
#include<iostream>
using namespace std;
struct student
{
        string sname;
        int score;
};
struct teacher
{
        string tname;
        struct student sarray[5];
};
void allocatespace(struct teacher tarray[],int len)
{
        string nameseed="ABCDE";
        for(int i=0;i<len;i++)
        {
                tarray[i].tname="Teacher_";
                tarray[i].tname+=nameseed[i];
               
                for(int j=0;j<5;j++)
                {
                        tarray[i].sarray[j].sname="Student_";
                        tarray[i].sarray[j].sname+=nameseed[j];
                       
                        tarray[i].sarray[j].score=60;
                }
               
        }
}
void print(struct teacher tarray[],int len)
{
        for(int i=0;i<len;i++)
        {
                cout<<"老师姓名:"<<tarray[i].tname<<endl;
            for(int j=0;j<5;j++)
            {
                    cout<<"学生姓名:"<<tarray[i].sarray[j].sname
                        <<"考试分数:"<<tarray[i].sarray[j].score<<endl;
                }
        }
}
int main()//创建三名老师的数组
{
        struct teacher tarray[3];
        int len=sizeof(tarray)/sizeof(tarray[0]);
        allocatespace(tarray,3);


   

        return 0;
}
最佳答案
2023-10-26 17:22:22
问题分析:
这段代码中存在一些语法错误和逻辑错误。首先,头文件iostream被包含了两次,应该只包含一次。其次,函数print()被定义了但没有被调用,所以不会有任何输出结果。

解决方案:
1. 删除第二次包含的头文件<iostream>。
2. 在main()函数中调用print()函数,以输出结果。

修改后的代码如下所示:

#include<iostream>
using namespace std;

struct student
{
    string sname;
    int score;
};

struct teacher
{
    string tname;
    struct student sarray[5];
};

void allocatespace(struct teacher tarray[], int len)
{
    string nameseed = "ABCDE";
    for (int i = 0; i < len; i++)
    {
        tarray[ i].tname = "Teacher_";
        tarray[ i].tname += nameseed[ i];

        for (int j = 0; j < 5; j++)
        {
            tarray[ i].sarray[j].sname = "Student_";
            tarray[ i].sarray[j].sname += nameseed[j];

            tarray[ i].sarray[j].score = 60;
        }
    }
}

void print(struct teacher tarray[], int len)
{
    for (int i = 0; i < len; i++)
    {
        cout << "老师姓名:" << tarray[ i].tname << endl;
        for (int j = 0; j < 5; j++)
        {
            cout << "学生姓名:" << tarray[ i].sarray[j].sname
                 << " 考试分数:" << tarray[ i].sarray[j].score << endl;
        }
    }
}

int main()
{
    struct teacher tarray[3];
    int len = sizeof(tarray) / sizeof(tarray[0]);
    allocatespace(tarray, 3);
    print(tarray, 3);

    return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-10-26 17:22:22 | 显示全部楼层    本楼为最佳答案   
问题分析:
这段代码中存在一些语法错误和逻辑错误。首先,头文件iostream被包含了两次,应该只包含一次。其次,函数print()被定义了但没有被调用,所以不会有任何输出结果。

解决方案:
1. 删除第二次包含的头文件<iostream>。
2. 在main()函数中调用print()函数,以输出结果。

修改后的代码如下所示:

#include<iostream>
using namespace std;

struct student
{
    string sname;
    int score;
};

struct teacher
{
    string tname;
    struct student sarray[5];
};

void allocatespace(struct teacher tarray[], int len)
{
    string nameseed = "ABCDE";
    for (int i = 0; i < len; i++)
    {
        tarray[ i].tname = "Teacher_";
        tarray[ i].tname += nameseed[ i];

        for (int j = 0; j < 5; j++)
        {
            tarray[ i].sarray[j].sname = "Student_";
            tarray[ i].sarray[j].sname += nameseed[j];

            tarray[ i].sarray[j].score = 60;
        }
    }
}

void print(struct teacher tarray[], int len)
{
    for (int i = 0; i < len; i++)
    {
        cout << "老师姓名:" << tarray[ i].tname << endl;
        for (int j = 0; j < 5; j++)
        {
            cout << "学生姓名:" << tarray[ i].sarray[j].sname
                 << " 考试分数:" << tarray[ i].sarray[j].score << endl;
        }
    }
}

int main()
{
    struct teacher tarray[3];
    int len = sizeof(tarray) / sizeof(tarray[0]);
    allocatespace(tarray, 3);
    print(tarray, 3);

    return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-26 17:22:34 | 显示全部楼层
这段代码存在一些问题,导致没有输出结果。

问题1:重复包含头文件
在代码的开头有两次#include<iostream>,应该只包含一次。

问题2:缺少print函数的调用
在main函数中没有调用print函数,所以无法输出结果。你需要在调用allocatespace函数后添加以下代码来调用print函数:
print(tarray, len);

问题3:print函数中的错误输出格式
在print函数中,在输出学生姓名那一行缺少一个分号,应该修改为:
cout << "学生姓名:" << tarray[ i].sarray[j].sname
    << "考试分数:" << tarray[ i].sarray[j].score << endl;

解决了上述问题后,代码可以正常运行并输出结果。
请注意,本回答来自GPT-4
如果问题已经解决,请设置最佳答案
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-23 08:37

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表