zoukankan      html  css  js  c++  java
  • bugkExercise 5.5 Calculating average student grades.

    从输出结果来看,这个程序是错的。完全不知道什么意思。

    Exercise 5-5. Write a program that will calculate the average grade for the students in
    each of an arbitrary number of classes. the program should read in all the grades for
    students in all classes before calculating the averages. Output the student grades
    for each class followed by the average for that class.

    //Exercise 5.5 Calculating average student grades.
    #include <stdio.h>
    #include <stdbool.h>
    #include <ctype.h>
    
    int main(void)
    {
      size_t nclasses = 0;                  // Number classes
      size_t nstudents_max = 0;             // Maximum number of students in a class
      char answer = 'N';
    
      printf("How many students are in the largest class? :");
      scanf("%zd", &nstudents_max);
      printf("How many classes are there? :");
      scanf("%zd", &nclasses);
      size_t class = 0;
      size_t student = 0 ;
    
    
      int grades[nclasses][nstudents_max];                     // Stores the grades
      size_t students[nclasses];                               // Stores the number of students in each class
    
      for( class = 0 ; class < nclasses ; ++class)
        {
        printf("Enter the grades for students in class %zd.
    ", class + 1);
        students[class] = 0;                                   // Student count within a class
        while(true)
        {
          printf("Enter the integer grade for student %zd: ", students[class] + 1);
          scanf("%d", &grades[class][students[class]]);
          if(++students[class] == nstudents_max)                // Increment and check student count
          {
            printf("Class %zd complete.", class + 1);
            break;
          }
          printf("Any more students in class %zd (Y or N): ", class + 1);
          scanf(" %c", &answer);
          if(toupper(answer) == 'N')
          break;
        }
      }
      printf("
    ");
      for( class = 0 ; class < nclasses ; ++class)
        {
        int class_total = 0;
        printf("Student grades for class %zd are:
    ", class + 1);
        for( student = 0 ; student < students[class] ; ++student)
        {
          class_total += grades[class][student];
          if((student + 1) % 6 == 0)
            printf("
    ");
          printf("%5d", grades[class][student]);
        }
        printf("
    Average grade for class %zd is %.2lf
    ", class + 1, (double)class_total/students[class]);
      }
        return 0;
    }
  • 相关阅读:
    C++类中使用new及delete小例子(续)
    C++类中使用new及delete小例子
    C++类中static修饰的函数的使用
    C++类使用static小例子(新手学习C++)
    C++结构体中使用函数与类中使用函数小结
    记一次简单的性能优化
    [转载]Java的内存回收机制
    写给自己的项目总结
    [转载]正则表达式30分钟入门教程
    使用JRockit进行性能优化一:环境搭建
  • 原文地址:https://www.cnblogs.com/xiaomi5320/p/4190302.html
Copyright © 2011-2022 走看看