程序录入的第一个人之后的资料不对 乱码了 什么问题呢?求解答 谢谢!
#include<stdio.h>#include <stdlib.h>
struct Ym
{
char name;
int age;
char one_time;
char two_time;
};
struct Ym* input(struct Ym *pt,int j);
struct Ym* input(struct Ym *pt,int j)
{
char ch;
printf("请问姓名是:");
scanf("%s",pt.name);
printf("请问年龄是:");
scanf("%d",&pt.age);
printf("请问是否接种过疫苗(Y/N):");
getchar();
if((ch = getchar()) == 'Y')
{
printf("请输入第一针疫苗接种的日期(yyyy-mm-dd):");
scanf("%s",pt.one_time);
}
else
{
pt.one_time = '0';
return;
}
printf("请问是否接种过第二针疫苗(Y/N):");
getchar();
if((ch = getchar()) == 'Y')
{
printf("请输入第二针疫苗接种的日期(yyyy-mm-dd):");
scanf("%s",pt.two_time);
}
else
pt.two_time = '0';
printf("\n\n");
return;
}
int main(void)
{
struct Ym *pt;
int i = 0;
char j,ch;
printf("请问是否要录入疫苗登记(Y/N):");
while(1)
{
ch = getchar();
if(ch == 'Y')
{
pt = (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->name);
printf("年龄:%d\n",pt->age);
if(pt->one_time != '0')
printf("第一针疫苗接种日期:%s,",pt->one_time);
else
{
printf("未接种疫苗!");
continue;
}
if(pt->two_time != '0')
printf("第二针疫苗接种日期:%s\n\n",pt->two_time);
else
printf("未接种第二针疫苗!\n\n");
}
return 0;
}
首先,我注意到您的 input 函数的原型和定义中包含了返回值类型 struct Ym*,但是在函数内部没有返回任何值。
为了修复这个问题,您应该将这个函数的返回值类型更改为 void,因为您实际上没有返回任何值。
下面是修复后的函数原型和定义:
void input(struct Ym *pt,int j);
void input(struct Ym *pt,int j)
{
...
}
接下来,关于乱码的问题,我注意到您使用了一个指针数组 struct Ym *pt。
但在调用 input 函数时,您使用了 input(*pt, i)。这里应该使用 input(pt[i], i) 而不是 input(*pt, i)。
这是因为 input 函数的第一个参数是一个指向 struct Ym 的指针,而 *pt 会解引用第一个元素,从而导致未定义的行为。
以下是修复后的 main 函数中的部分代码:
while(1)
{
ch = getchar();
if(ch == 'Y')
{
pt = (struct Ym *)malloc(sizeof(struct Ym));
input(pt, i); // 修复这里的调用
i++;
getchar();
}
else
break;
printf("当前已经录入%d人疫苗档案\n请问是否要继续录入疫苗登记(Y/N):",i);
}
按照这些更改后,程序应该正常运行,不会出现乱码问题。如果还有其他问题,请随时告诉我。 isdkz 发表于 2023-4-7 00:25
首先,我注意到您的 input 函数的原型和定义中包含了返回值类型 struct Ym*,但是在函数内部没有返回任何值 ...
666,厉害呀!你是机器人吗?回复这么快。等明天我看看有没有其他回复,明天给你最佳答案,谢谢大佬! a905448839 发表于 2023-4-7 00:36
666,厉害呀!你是机器人吗?回复这么快。等明天我看看有没有其他回复,明天给你最佳答案,谢谢大佬!
机器人实锤{:5_109:} isdkz 发表于 2023-4-7 00:25
首先,我注意到您的 input 函数的原型和定义中包含了返回值类型 struct Ym*,但是在函数内部没有返回任何值 ...
你好,录入第三次数据卡住了!
不知道怎么上传图片。。。
以下是已修改代码。
#include<stdio.h>
#include <stdlib.h>
struct Ym
{
char name;
int age;
char one_time;
char two_time;
};
void input(struct Ym *pt,int j);
void input(struct Ym *pt,int j)
{
char ch;
printf("请问姓名是:");
scanf("%s",pt.name);
printf("请问年龄是:");
scanf("%d",&pt.age);
printf("请问是否接种过疫苗(Y/N):");
getchar();
if((ch = getchar()) == 'Y')
{
printf("请输入第一针疫苗接种的日期(yyyy-mm-dd):");
scanf("%s",pt.one_time);
}
else
{
pt.one_time = '0';
return ;
}
printf("请问是否接种过第二针疫苗(Y/N):");
getchar();
if((ch = getchar()) == 'Y')
{
printf("请输入第二针疫苗接种的日期(yyyy-mm-dd):");
scanf("%s",pt.two_time);
}
else
pt.two_time = '0';
printf("\n\n");
return ;
}
int main(void)
{
struct Ym *pt;
int i = 0;
char j,ch;
printf("请问是否要录入疫苗登记(Y/N):");
while(1)
{
ch = getchar();
if(ch == 'Y')
{
pt = (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->name);
printf("年龄:%d\n",pt->age);
if(pt->one_time != '0')
printf("第一针疫苗接种日期:%s,",pt->one_time);
else
{
printf("未接种疫苗!");
continue;
}
if(pt->two_time != '0')
printf("第二针疫苗接种日期:%s\n\n",pt->two_time);
else
printf("未接种第二针疫苗!\n\n");
}
return 0;
}
a905448839 发表于 2023-4-7 22:49
你好,录入第三次数据卡住了!
不知道怎么上传图片。。。
录入第三次数据卡住的问题是因为在main函数中的循环部分,你需要在循环末尾清空输入缓冲区。
修改后的main函数如下:
int main(void)
{
struct Ym *pt;
int i = 0;
char ch;
printf("请问是否要录入疫苗登记(Y/N):");
while(1)
{
ch = getchar();
if(ch == 'Y')
{
pt = (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->name);
printf("年龄:%d\n",pt->age);
if(pt->one_time != '0')
printf("第一针疫苗接种日期:%s,",pt->one_time);
else
{
printf("未接种疫苗!");
continue;
}
if(pt->two_time != '0')
printf("第二针疫苗接种日期:%s\n\n",pt->two_time);
else
printf("未接种第二针疫苗!\n\n");
}
return 0;
}
这样修改后,程序应该可以正常录入第三次(以及后续)数据。
请尝试使用这个修改后的代码,并检查是否解决了您遇到的问题。 isdkz 发表于 2023-4-7 22:56
录入第三次数据卡住的问题是因为在main函数中的循环部分,你需要在循环末尾清空输入缓冲区。
修改后的 ...
还是卡住的。。不过现在更快的运算出来了 等待几秒钟时间 程序便结束 不会让我录入第三个人的数据 a905448839 发表于 2023-4-7 23:06
还是卡住的。。不过现在更快的运算出来了 等待几秒钟时间 程序便结束 不会让我录入第三个人的数据
我发现在input函数中仍然需要进行一些调整。我将input函数和main函数进行了优化,以解决卡住的问题。
以下是修改后的代码:
#include<stdio.h>
#include <stdlib.h>
struct Ym
{
char name;
int age;
char one_time;
char two_time;
};
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';
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';
printf("\n\n");
return;
}
int main(void)
{
struct Ym *pt;
int i = 0;
char ch;
printf("请问是否要录入疫苗登记(Y/N):");
while (1)
{
ch = getchar();
if (ch == 'Y')
{
pt = (struct Ym *)malloc(sizeof(struct Ym));
input(pt);
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->name);
printf("年龄:%d\n", pt->age);
if (pt->one_time != '0')
printf("第一针疫苗接种日期:%s,", pt->one_time);
else
{
printf("未接种疫苗!");
continue;
}
if (pt->two_time != '0')
printf("第二针疫苗接种日期:%s\n\n", pt->two_time);
else
printf("未接种第二针疫苗!\n\n");
}
return 0;
}
/b]
页:
[1]