gpt4 book ai didi

c - 使用gets函数输入

转载 作者:太空宇宙 更新时间:2023-11-04 00:40:46 24 4
gpt4 key购买 nike

在下面的代码中,当我想输入第二个学生或 >2 个学生的记录时.. 编译器跳过名称输入并接受类(class)和年龄的输入.. 有什么问题请帮帮我?

#include <stdio.h>
#include <conio.h>

struct Student
{

char Name[16];
char Class[16];
int age ;

};

void main()

{

struct Student a[5] ;

for(int i=0 ; i<5 ; i++)
{
printf("\n Enter Name :");
gets(a[i].Name);
printf("\n Enter Class :");
gets(a[i].Class);
printf("\n Enter Age : ");
scanf("%d" , & a[i].age);
}

getch();
}

最佳答案

这个问题很常见。试试这个:

scanf("%d ", &a[i].age);
^ <--- This space will make scanf eat the remaining blanks

有关于此的 C 常见问题解答:

次要注意事项:

关于c - 使用gets函数输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9134208/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com