0

我们被要求用 c 编写一个特定的程序,使用户能够

  • 添加学生
  • 查看所有学生
  • 搜索学生并退出

使用结构。该程序应该像学生的门户一样。我有这个“暂定代码”,在编译时会打印出分段错误(核心转储)的错误。所以这就是我的代码的运行方式:

#include<stdio.h>

typedef struct tag1{
    int day, year, month;
}Date;

typedef struct tag2{
    int number;
    char name[50];
    char course[30];
    Date birthday;
}Record;



main(){
    int choice, n, i=0;
    Record student[200];

    //printing of menu:
    printf("Choose from the menu:\n");
    printf("     [1] Add Student\n");
    printf("     [2] Search Student\n");
    printf("     [3] View All\n");
    printf("     [4] Exit\n");
    scanf("%d", &choice);


    if((choice>=1)&&(choice<=4)){
        if(choice==1){

            printf("Enter student number:\n");
            scanf("%d", &student[n].number);    

            printf("Enter the name of the student:\n");     
            scanf("%[^\n]", student[n].name);

            printf("Enter month of birth:\n");
            scanf("%d", &student[n].birthday.month);

            printf("Enter day of birth:\n");
            scanf("%d", &student[n].birthday.day);

            printf("Enter year of birth:\n");
            scanf("%d", &student[n].birthday.year);

            printf("Enter course:\n");
            scanf("%[^\n]", student[n].course);

            n++;
        }
        if(choice==2){
        while(i<n){
            printf("%d\n", student[n].number);
            printf("%s", student[n].name);
            printf("%d/%d/%d", student[n].birthday.month, student[n].birthday.day,student[n].birthday.year);
            printf("%s", student[n].course);
            i++;
            }
        }
        }


    }

我刚刚完成了一半,因为我不知道如何寻找学生。希望您对我改进代码有任何建议。

4

3 回答 3

1

假设,您使用i迭代学生,直到到达第 n 个元素。

所以应该student[i]不是student[n]

这应该有效:

//...

while(i<n){ 

      Record current = student[i]; 

      printf("%d\n", current.number);
      printf("%s", current.name);
      printf("%d/%d/%d", current.birthday.month, 
                   current.birthday.day,
                   current.birthday.year);
      printf("%s", current.course);

      i++;
}

是的,n 应该被初始化为 0。

于 2013-03-10T04:50:59.870 回答
0

您忘记了初始化 n(您可能想要 n=0)。

于 2013-03-10T04:46:33.620 回答
0

*要为学生保密,您可以像这样使用*

int sno;
unsigned char flag=0;
printf("Enter student number to search :");
scanf("%d",&sno);


然后将此记录搜索到所有记录,当它与任何记录匹配时,显示该记录。

for(i=0;i<n;i++) // where n is maximum number of records
{
     if(student[i].number == sno)
     {
         flag=1;
         /*** print all the member of student[i] ****/
         break;
     }
} // end of for loop
if(0==flag) { printf("\nSorry !!! Record not found with student number : %d\n",sno); }
于 2013-04-27T20:41:19.010 回答