鱼C论坛

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

[已解决]小白求助

[复制链接]
发表于 2020-12-5 19:28:29 | 显示全部楼层 |阅读模式

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

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

x
#include<stdio.h>
#include<string.h>

struct  candicate
{
    char name[20];
    int count;
};

void function(struct candicate c[],int n);

int main()
{
    struct  candicate  c[] = {{"chen",0},{"he",0},{"wang",0}};
    int i,j,n;
    char name[20];

    printf("参与投票的人数:");
    scanf("%d",&n);

    for(i = 0;i < n;i++)
    {
        printf("第%d人投的是:",i+1);
        scanf("%s",name);
        for(j = 0;j < 3;j++)
        {
            if(strcmp(c[j].name,name)  == 0)
            {
                c[j].count++;
            }
        }
    }

    for(i = 0;i < 3;i++)
    {
        function(c[i],n);
        printf("第%d位候选人\"%s\"的投票数为%d\n",i+1,c[i].name,c[i].count);
    }
    return 0;
}

void function(struct candicate c[],int n)
{
    int a,b;
    struct candicate temp;
    for(a = 0;a < n - 1;a++)
    {
        for(b = 0;b < n - 1 - a;b++)
        {
            if((c[b].count < c[b + 1].count)|| (c[b].count = c[b + 1].count && strcmp(c[b].name,c[b + 1].name) > 0))
            {
                temp = c[b];
                c[b] = c[b + 1];
                c[b + 1] = temp;
            }
        }
    }
}
有大佬帮我看看这段代码哪里错了吗?
最佳答案
2020-12-6 21:01:46
#include<stdio.h>
#include<string.h>

struct  candicate
{
    char name[20];
    int count;
};

void function(struct candicate c[], int n);

int main()
{
    struct  candicate  c[] = { {"chen",0},{"he",0},{"wang",0} };
    int i, j, n;
    char name[20];

    printf("参与投票的人数:");
    scanf("%d", &n);

    for (i = 0; i < n; i++)
    {
        printf("第%d人投的是:", i + 1);
        scanf("%s", name);
        for (j = 0; j < 3; j++)
        {
            if (strcmp(c[j].name, name) == 0)
            {
                c[j].count++;
            }
        }
    }

    for (i = 0; i < 3; i++)
    {
        function(&c[i], n);                                               // 加上了 & 
        printf("第%d位候选人"%s"的投票数为%d\n", i + 1, c[i].name, c[i].count);
    }
    return 0;
}

void function(struct candicate c[], int n)
{
    int a, b;
    struct candicate temp;
    for (a = 0; a < n - 1; a++)
    {
        for (b = 0; b < n - 1 - a; b++)
        {
            if ((c[b].count < c[b + 1].count) || (c[b].count = c[b + 1].count && strcmp(c[b].name, c[b + 1].name) > 0))
            {
                temp = c[b];
                c[b] = c[b + 1];
                c[b + 1] = temp;
            }
        }
    }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-12-5 22:15:50 | 显示全部楼层
第 37 行错误,function(c[], i);  // 出现不存在从 "candicate" 到 "candicate *" 的适当转换函数
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-12-6 21:01:46 | 显示全部楼层    本楼为最佳答案   
#include<stdio.h>
#include<string.h>

struct  candicate
{
    char name[20];
    int count;
};

void function(struct candicate c[], int n);

int main()
{
    struct  candicate  c[] = { {"chen",0},{"he",0},{"wang",0} };
    int i, j, n;
    char name[20];

    printf("参与投票的人数:");
    scanf("%d", &n);

    for (i = 0; i < n; i++)
    {
        printf("第%d人投的是:", i + 1);
        scanf("%s", name);
        for (j = 0; j < 3; j++)
        {
            if (strcmp(c[j].name, name) == 0)
            {
                c[j].count++;
            }
        }
    }

    for (i = 0; i < 3; i++)
    {
        function(&c[i], n);                                               // 加上了 & 
        printf("第%d位候选人"%s"的投票数为%d\n", i + 1, c[i].name, c[i].count);
    }
    return 0;
}

void function(struct candicate c[], int n)
{
    int a, b;
    struct candicate temp;
    for (a = 0; a < n - 1; a++)
    {
        for (b = 0; b < n - 1 - a; b++)
        {
            if ((c[b].count < c[b + 1].count) || (c[b].count = c[b + 1].count && strcmp(c[b].name, c[b + 1].name) > 0))
            {
                temp = c[b];
                c[b] = c[b + 1];
                c[b + 1] = temp;
            }
        }
    }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-12 12:09

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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