C语言用scanf给结构变量赋值的问题
voidinpstat(structStudent*pstu){inti;for(i=0;i<N;i++){printf("输入第%d位学生数据:\nname\tNo.\...
void inpstat(struct Student *pstu)
{
int i;
for(i=0;i<N;i++)
{
printf("输入第%d位学生数据:\nname\tNo.\tsex\tCpp\tEnglish\tMath\tPhysics\n",i+1);
scanf("%s%d%c%d%d%d%d",&pstu->num,&pstu->sex,&pstu->Cpp,&pstu->English,&pstu->Math,&pstu->Physics);
pstu++;
}
}
这个是函数。N=5
运行结果是这个,第3、5位学生数据输入直接被跳过去了。 展开
{
int i;
for(i=0;i<N;i++)
{
printf("输入第%d位学生数据:\nname\tNo.\tsex\tCpp\tEnglish\tMath\tPhysics\n",i+1);
scanf("%s%d%c%d%d%d%d",&pstu->num,&pstu->sex,&pstu->Cpp,&pstu->English,&pstu->Math,&pstu->Physics);
pstu++;
}
}
这个是函数。N=5
运行结果是这个,第3、5位学生数据输入直接被跳过去了。 展开
7个回答
展开全部
你这个本来就不对应,输入的是7个,但scanf里面才6个应该是漏了pstu->name吧
而且,一个字符不能这样输入,%c输入的只是pstu->num后面的那个空格,而不是M
应该在%c前面加个空格,输入时也是输入一个空格,改成
scanf("%s%d %c%d%d%d%d", pstu->name, &pstu->num,&pstu->sex,&pstu->Cpp,&pstu->English,&pstu->Math,&pstu->Physics);
而且,一个字符不能这样输入,%c输入的只是pstu->num后面的那个空格,而不是M
应该在%c前面加个空格,输入时也是输入一个空格,改成
scanf("%s%d %c%d%d%d%d", pstu->name, &pstu->num,&pstu->sex,&pstu->Cpp,&pstu->English,&pstu->Math,&pstu->Physics);
展开全部
printf("输入第%d位学生数据:\nname\tNo.\tsex\tCpp\tEnglish\tMath\tPhysics\n");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
scanf("%s%d%c%d%d%d%d",&pstu->num,&pstu->sex,&pstu->Cpp,&pstu->English,&pstu->Math,&pstu->Physics);
缺少参数,输入学生名字的参数没有。
缺少参数,输入学生名字的参数没有。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
亲 我没运行 不过有发生这个问题 应该是scanf %s %c %d混用的问题
不过你的代码中 明显在scanf里面的数量对不上 前面你应该多打了个%d
不过你的代码中 明显在scanf里面的数量对不上 前面你应该多打了个%d
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询