鱼C论坛

 找回密码
 立即注册
查看: 2507|回复: 7

[已解决]程序录入的第一个人之后的资料不对 乱码了 什么问题呢?求解答 谢谢!

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

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

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

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

struct Ym
{
        char name[8];
        int age;
        char one_time[11];
        char two_time[11];
};

struct Ym* input(struct Ym *pt,int j);
struct Ym* input(struct Ym *pt,int j)
{
        char ch;
        printf("请问姓名是:");
        scanf("%s",pt[j].name);
        printf("请问年龄是:");
        scanf("%d",&pt[j].age);
        printf("请问是否接种过疫苗(Y/N):");
        getchar();

        
        if((ch = getchar()) == 'Y')
        {
                printf("请输入第一针疫苗接种的日期(yyyy-mm-dd):");
                scanf("%s",pt[j].one_time);
                
        }
        else
        {
                pt[j].one_time[0] = '0';
                return;
        }
        printf("请问是否接种过第二针疫苗(Y/N):");
        getchar();

        
        if((ch = getchar()) == 'Y')
        {
        
                printf("请输入第二针疫苗接种的日期(yyyy-mm-dd):");
                scanf("%s",pt[j].two_time);
        }
        else
        pt[j].two_time[0] = '0';
        
        printf("\n\n");

        return;
}


int main(void)
{
        struct Ym *pt[255];
        int i = 0;
        char j,ch;
        printf("请问是否要录入疫苗登记(Y/N):");
        
        while(1)
        {
                ch = getchar();
                
                if(ch == 'Y')
                {
                        pt[i] = (struct Ym *)malloc(sizeof(struct Ym));
                        input(*pt,i);
                        i++;
                        getchar();
                }
                else
                break; 
                printf("当前已经录入%d人疫苗档案\n请问是否要继续录入疫苗登记(Y/N):",i);
        } 
        
        printf("====录入数据完毕(总共%d人如下)====\n\n",i);
        int k;
        for(k = 0; k < i; k++)
        {
                printf("姓名:%s",pt[k]->name);        
                printf("年龄:%d\n",pt[k]->age);        
                if(pt[k]->one_time[0] != '0')
                printf("第一针疫苗接种日期:%s,",pt[k]->one_time);
                else
                {
                        printf("未接种疫苗!");
                        continue;
                }
                if(pt[k]->two_time[0] != '0')
                printf("第二针疫苗接种日期:%s\n\n",pt[k]->two_time);
                else
                printf("未接种第二针疫苗!\n\n"); 

        }         

        return 0;
}
最佳答案
2023-4-7 00:25:52
首先,我注意到您的 input 函数的原型和定义中包含了返回值类型 struct Ym*,但是在函数内部没有返回任何值。

为了修复这个问题,您应该将这个函数的返回值类型更改为 void,因为您实际上没有返回任何值。

下面是修复后的函数原型和定义:
void input(struct Ym *pt,int j);
void input(struct Ym *pt,int j)
{
    ...
}

接下来,关于乱码的问题,我注意到您使用了一个指针数组 struct Ym *pt[255]。

但在调用 input 函数时,您使用了 input(*pt, i)。这里应该使用 input(pt[i], i) 而不是 input(*pt, i)。

这是因为 input 函数的第一个参数是一个指向 struct Ym 的指针,而 *pt 会解引用第一个元素,从而导致未定义的行为。

以下是修复后的 main 函数中的部分代码:
while(1)
{
    ch = getchar();
    
    if(ch == 'Y')
    {
        pt[i] = (struct Ym *)malloc(sizeof(struct Ym));
        input(pt[i], i); // 修复这里的调用
        i++;
        getchar();
    }
    else
    break; 
    printf("当前已经录入%d人疫苗档案\n请问是否要继续录入疫苗登记(Y/N):",i);
}

按照这些更改后,程序应该正常运行,不会出现乱码问题。如果还有其他问题,请随时告诉我。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-4-7 00:25:52 | 显示全部楼层    本楼为最佳答案   
首先,我注意到您的 input 函数的原型和定义中包含了返回值类型 struct Ym*,但是在函数内部没有返回任何值。

为了修复这个问题,您应该将这个函数的返回值类型更改为 void,因为您实际上没有返回任何值。

下面是修复后的函数原型和定义:
void input(struct Ym *pt,int j);
void input(struct Ym *pt,int j)
{
    ...
}

接下来,关于乱码的问题,我注意到您使用了一个指针数组 struct Ym *pt[255]。

但在调用 input 函数时,您使用了 input(*pt, i)。这里应该使用 input(pt[i], i) 而不是 input(*pt, i)。

这是因为 input 函数的第一个参数是一个指向 struct Ym 的指针,而 *pt 会解引用第一个元素,从而导致未定义的行为。

以下是修复后的 main 函数中的部分代码:
while(1)
{
    ch = getchar();
    
    if(ch == 'Y')
    {
        pt[i] = (struct Ym *)malloc(sizeof(struct Ym));
        input(pt[i], i); // 修复这里的调用
        i++;
        getchar();
    }
    else
    break; 
    printf("当前已经录入%d人疫苗档案\n请问是否要继续录入疫苗登记(Y/N):",i);
}

按照这些更改后,程序应该正常运行,不会出现乱码问题。如果还有其他问题,请随时告诉我。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2023-4-7 00:36:06 From FishC Mobile | 显示全部楼层
isdkz 发表于 2023-4-7 00:25
首先,我注意到您的 input 函数的原型和定义中包含了返回值类型 struct Ym*,但是在函数内部没有返回任何值 ...

666,厉害呀!你是机器人吗?回复这么快。等明天我看看有没有其他回复,明天给你最佳答案,谢谢大佬!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-4-7 17:01:45 | 显示全部楼层
a905448839 发表于 2023-4-7 00:36
666,厉害呀!你是机器人吗?回复这么快。等明天我看看有没有其他回复,明天给你最佳答案,谢谢大佬!

机器人实锤
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2023-4-7 22:49:58 | 显示全部楼层
isdkz 发表于 2023-4-7 00:25
首先,我注意到您的 input 函数的原型和定义中包含了返回值类型 struct Ym*,但是在函数内部没有返回任何值 ...

你好,录入第三次数据卡住了!

不知道怎么上传图片。。。

以下是已修改代码。
#include<stdio.h>
#include <stdlib.h>

struct Ym
{
        char name[8];
        int age;
        char one_time[11];
        char two_time[11];
};

void input(struct Ym *pt,int j);
void input(struct Ym *pt,int j)
{
        char ch;
        printf("请问姓名是:");
        scanf("%s",pt[j].name);
        printf("请问年龄是:");
        scanf("%d",&pt[j].age);
        printf("请问是否接种过疫苗(Y/N):");
        getchar();

        
        if((ch = getchar()) == 'Y')
        {
                printf("请输入第一针疫苗接种的日期(yyyy-mm-dd):");
                scanf("%s",pt[j].one_time);
                
        }
        else
        {
                pt[j].one_time[0] = '0';
                return ;
        }
        printf("请问是否接种过第二针疫苗(Y/N):");
        getchar();

        
        if((ch = getchar()) == 'Y')
        {
        
                printf("请输入第二针疫苗接种的日期(yyyy-mm-dd):");
                scanf("%s",pt[j].two_time);
        }
        else
        pt[j].two_time[0] = '0';
        
        printf("\n\n");

        return ;
}


int main(void)
{
        struct Ym *pt[255];
        int i = 0;
        char j,ch;
        printf("请问是否要录入疫苗登记(Y/N):");
        
        while(1)
        {
                ch = getchar();
                
                if(ch == 'Y')
                {
                        pt[i] = (struct Ym *)malloc(sizeof(struct Ym));
                        input(pt[i],i);
                        i++;
                        getchar();
                }
                else
                break; 
                printf("当前已经录入%d人疫苗档案\n请问是否要继续录入疫苗登记(Y/N):",i);
        } 
        
        printf("====录入数据完毕(总共%d人如下)====\n\n",i);
        int k;
        for(k = 0; k < i; k++)
        {
                printf("姓名:%s",pt[k]->name);        
                printf("年龄:%d\n",pt[k]->age);        
                if(pt[k]->one_time[0] != '0')
                printf("第一针疫苗接种日期:%s,",pt[k]->one_time);
                else
                {
                        printf("未接种疫苗!");
                        continue;
                }
                if(pt[k]->two_time[0] != '0')
                printf("第二针疫苗接种日期:%s\n\n",pt[k]->two_time);
                else
                printf("未接种第二针疫苗!\n\n"); 

        }         

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

使用道具 举报

发表于 2023-4-7 22:56:09 | 显示全部楼层
a905448839 发表于 2023-4-7 22:49
你好,录入第三次数据卡住了!

不知道怎么上传图片。。。

录入第三次数据卡住的问题是因为在main函数中的循环部分,你需要在循环末尾清空输入缓冲区。

修改后的main函数如下:
int main(void)
{
    struct Ym *pt[255];
    int i = 0;
    char ch;
    printf("请问是否要录入疫苗登记(Y/N):");
   
    while(1)
    {
        ch = getchar();
       
        if(ch == 'Y')
        {
            pt[i] = (struct Ym *)malloc(sizeof(struct Ym));
            input(pt[i],i);
            i++;
        }
        else
        break;

        while ((ch = getchar()) != '\n' && ch != EOF); // 添加这行以清空输入缓冲区

        printf("当前已经录入%d人疫苗档案\n请问是否要继续录入疫苗登记(Y/N):",i);
    }
   
    printf("====录入数据完毕(总共%d人如下)====\n\n",i);
    int k;
    for(k = 0; k < i; k++)
    {
        printf("姓名:%s",pt[k]->name);       
        printf("年龄:%d\n",pt[k]->age);       
        if(pt[k]->one_time[0] != '0')
        printf("第一针疫苗接种日期:%s,",pt[k]->one_time);
        else
        {
            printf("未接种疫苗!");
            continue;
        }
        if(pt[k]->two_time[0] != '0')
        printf("第二针疫苗接种日期:%s\n\n",pt[k]->two_time);
        else
        printf("未接种第二针疫苗!\n\n");

    }         

    return 0;
}

这样修改后,程序应该可以正常录入第三次(以及后续)数据。

请尝试使用这个修改后的代码,并检查是否解决了您遇到的问题。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2023-4-7 23:06:43 | 显示全部楼层
isdkz 发表于 2023-4-7 22:56
录入第三次数据卡住的问题是因为在main函数中的循环部分,你需要在循环末尾清空输入缓冲区。

修改后的 ...

还是卡住的。。不过现在更快的运算出来了 等待几秒钟时间 程序便结束 不会让我录入第三个人的数据
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-4-7 23:39:36 | 显示全部楼层
a905448839 发表于 2023-4-7 23:06
还是卡住的。。不过现在更快的运算出来了 等待几秒钟时间 程序便结束 不会让我录入第三个人的数据

[b]我发现在input函数中仍然需要进行一些调整。我将input函数和main函数进行了优化,以解决卡住的问题。

以下是修改后的代码:
#include<stdio.h>
#include <stdlib.h>

struct Ym
{
        char name[8];
        int age;
        char one_time[11];
        char two_time[11];
};

void input(struct Ym *pt);
void input(struct Ym *pt)
{
    char ch;
    printf("请问姓名是:");
    scanf("%s", pt->name);
    printf("请问年龄是:");
    scanf("%d", &pt->age);

    while ((ch = getchar()) != '\n' && ch != EOF); // 添加这行以清空输入缓冲区

    printf("请问是否接种过疫苗(Y/N):");

    if ((ch = getchar()) == 'Y')
    {
        printf("请输入第一针疫苗接种的日期(yyyy-mm-dd):");
        scanf("%s", pt->one_time);
    }
    else
    {
        pt->one_time[0] = '0';
        return;
    }

    while ((ch = getchar()) != '\n' && ch != EOF); // 添加这行以清空输入缓冲区

    printf("请问是否接种过第二针疫苗(Y/N):");

    if ((ch = getchar()) == 'Y')
    {
        printf("请输入第二针疫苗接种的日期(yyyy-mm-dd):");
        scanf("%s", pt->two_time);
    }
    else
        pt->two_time[0] = '0';

    printf("\n\n");

    return;
}

int main(void)
{
    struct Ym *pt[255];
    int i = 0;
    char ch;
    printf("请问是否要录入疫苗登记(Y/N):");

    while (1)
    {
        ch = getchar();

        if (ch == 'Y')
        {
            pt[i] = (struct Ym *)malloc(sizeof(struct Ym));
            input(pt[i]);
            i++;
        }
        else
            break;

        while ((ch = getchar()) != '\n' && ch != EOF); // 添加这行以清空输入缓冲区

        printf("当前已经录入%d人疫苗档案\n请问是否要继续录入疫苗登记(Y/N):", i);
    }

    printf("====录入数据完毕(总共%d人如下)====\n\n", i);
    int k;
    for (k = 0; k < i; k++)
    {
        printf("姓名:%s", pt[k]->name);
        printf("年龄:%d\n", pt[k]->age);
        if (pt[k]->one_time[0] != '0')
            printf("第一针疫苗接种日期:%s,", pt[k]->one_time);
        else
        {
            printf("未接种疫苗!");
            continue;
        }
        if (pt[k]->two_time[0] != '0')
            printf("第二针疫苗接种日期:%s\n\n", pt[k]->two_time);
        else
            printf("未接种第二针疫苗!\n\n");
    }

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

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-12-23 21:47

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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