拽拽、圈圈 发表于 2017-6-18 23:05:44

for循环中连续scanf结果错位

本帖最后由 拽拽、圈圈 于 2017-6-18 23:06 编辑

求教各位大神 为什么3选项的姓名打印不正确
环境是dev-c++ TDM-GCC 4.9.2

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_STUDENT 30
#define MAX_COURSE 6

typedef struct{
      //学号
      int Id;
      //学生名称长度
      char name;
      //课程分数
      int grade;
      //课程总分
      int score;
      //平均分
      int average;
} Students;

//使用的函数

//打印菜单
int showMenu(void);

//录入成绩 菜单 1
Students recordStudent(Students * student, int *person, int *course);

//计算每门课程总分及平均分 菜单 2
int countPerCourse(const Students *student, int person, int course);

//计算每个学生的总分和平均分 菜单 3
int countPerStudentCourse(const Students *student, int person, int course);

//按学生总分由高到低排名 菜单 4
int sortByTotalScore(const Students *student, int person, int course);

//打印成绩表
int printScoreList(const Students *student, int person, int course);

/**
* 显示操作目录
* @return int 需要执行的操作
*/
int showMenu()
{
      int choice = 0;
      printf("====考试系统 v1.0====\n"
                "操作选项:\n"
                "\t1.录入每个学生的学号、姓名和各科考试成绩\n"
                "\t2.计算每门课程的总分和平均分\n"
                "\t3.计算每个学生的总分和平均分\n"
                "\t4.按每个学生的总分由高到低排出名次表\n"
                "\t5.按学号由小到大排出成绩表\n"
                "\t6.按姓名的字典顺序排出成绩表\n"
                "\t7.按学号查询学生排名及考试成绩\n"
                "\t8.按姓名查询学生排名及考试成绩\n"
                "\t9.统计每门课程每个类别(优秀,良好,中等,及格,不及格)的人数及比例\n"
                "\t10.打印学生的学号、姓名、各科考试成绩以及每门课程的总分和平均分\n"
                "\t0.退出\n"
                "请选择:"
      );
      scanf("%d", &choice);
      return choice;
}

/**
* 录入学生成绩 菜单 1
* @param int person 人数
* @param int course 课程数
* @return int
*/
Students recordStudent(Students * student, int *person, int *course)
{
      int index,
                _person = 0,
                _course = 0,
                key;
      
      printf("请输入学生人数:");
      scanf("%d", &_person);
      
      printf("考试课程数:");
      scanf("%d", &_course);
      
      
      //通过指针修改全局学生人数,课程数
      *person = _person;
      *course = _course;
      
      printf("====开始录入学生信息====\n");
      
      for (index=0; index<_person; ++index) {
                printf("学号:");
                scanf("%d", &student.Id);
               
                printf("姓名:");
                scanf("%s", student.name);

                printf("分数:\n");
                for (key=0; key<_course; ++key) {
                        printf("第%d门:", key+1);
                        scanf("%d", &student.grade);
                }
                printf("\n");
      }
}

/**
* 计算每个学生的总分和平均分 菜单 3
* @param Students student 学生信息
* @param int person 学生人数
* @param int course 课程数
* @return int
*/
int countPerStudentCourse(const Students *student, int person, int course)
{
      int index =0,
                key = 0,
                total = 0,
                avg = 0;
      for (index=0; index<person; ++index) {
               
                printf("%s\n", student.name);
      }
      return 0;
}

int main(void)
{
      Students student;
      int person = 0,
                course = 0,
                choice = 0,
                index = 0;
      
      while((choice = showMenu())!=0){
                if (choice==1) {
                        recordStudent(&student, &person, &course);
                } else if (choice==3) {
                        countPerStudentCourse(&student, person, course);
                } else {
                        continue;
                }
      }
      return 0;
}

ba21 发表于 2017-6-18 23:05:45

本帖最后由 ba21 于 2017-6-18 23:40 编辑

for (index=0; index<_person; index++) {

for (index=0; index<person; index++) {

for (key=0; key<_course; key++) {

拽拽、圈圈 发表于 2017-6-19 21:16:37

ba21 发表于 2017-6-18 23:27
for (index=0; index

嵌套循环是修改的哪里呢

ba21 发表于 2017-6-19 21:19:49

拽拽、圈圈 发表于 2017-6-19 21:16
嵌套循环是修改的哪里呢

你上面总共就3处++。你这3处都是在前面,改成到后面就可以了

ba21 发表于 2017-6-20 11:20:11

还没有解决吗?{:10_245:}

ba21 发表于 2017-6-23 23:35:14

?????????????怎么还没解决?这币是挣不到了{:10_257:}
页: [1]
查看完整版本: for循环中连续scanf结果错位