10iii.cpp
来自「C/C++程序设计导论(第二版)》程序源文件」· C++ 代码 · 共 21 行
CPP
21 行
// gradtst2.cpp Grade student quiz answers in file `students.txt' against
// the key in disk file `key.txt'. Report each student's score and a class
/// summary of the number correct for each question.
#include <iostream.h>
#include <fstream.h>
#include "Cstring.h"
const String KEYFILE ="key.txt";
const String STUDENTFILE ="students.txt";
const int SIZE = 5;
void InputAnswerKey (String, char[ ], int); // prototypes
void GradeStudents (String, char[ ], int[ ], int);
void ReportSummary (int[ ], int);
void main ()
{ char answers[SIZE];
int summary[SIZE]= { 0,0, 0, 0, 0};
InputAnswerKey (KEYFILE, answers, SIZE);
GradeStudents (STUDENTFILE, answers, summary, SIZE);
ReportSummary (summary, SIZE);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?