View book_library_sorter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "stdafx.h" | |
#include <iostream> | |
#include <string> | |
#include <fstream> | |
#include <assert.h> | |
using namespace std; | |
#define record "record.dat" | |
struct Date |
View grading_system_c++
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "stdafx.h" | |
#include <iostream> | |
#include <string> | |
#include <math.h> | |
#include <assert.h> | |
using namespace std; | |
float stu_perc_grade(int numCorrect); | |
float minScore = 9999; |