This file contains hidden or 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
//Libraries and other used mediums | |
#include "Header.h" | |
#include <iostream> | |
#include <iomanip> | |
#include <cmath> | |
using namespace std; | |
//Definitions | |
//function to display student records |
This file contains hidden or 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 <iostream> | |
#include <ctime> | |
#include <cstdlib> | |
using namespace std; | |
int main() | |
{ | |
//variable initialization & labeling the randomizer | |
static const int nSuit = 4; | |
static const int nCard = 13; |
This file contains hidden or 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
/* | |
Connor Conatser | |
9/30/14 | |
Exam Scores | |
*/ | |
#include <iostream> | |
#include <fstream> | |
#include <iomanip> | |
using namespace std; |