Skip to content

Instantly share code, notes, and snippets.

View ConatserCA's full-sized avatar

Connor ConatserCA

View GitHub Profile
@ConatserCA
ConatserCA / Record Structures Functions.cpp
Created November 19, 2014 04:35
Record Structures program
//Libraries and other used mediums
#include "Header.h"
#include <iostream>
#include <iomanip>
#include <cmath>
using namespace std;
//Definitions
//function to display student records
#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;
@ConatserCA
ConatserCA / Exam Scores
Created October 7, 2014 06:31
Read exam scores from ExamScores.txt (Copy and paste these numbers "67 64 83 81 72 75 85 81 56 88 71 80 90 58 78 74 84 64 72 69 78 87 84 72 83 68 62 88 70 75" into a txt document) 1. Calculate average score and display. 2. Find Min and Max scores and display. 3. Display scores in rows of three scores.
/*
Connor Conatser
9/30/14
Exam Scores
*/
#include <iostream>
#include <fstream>
#include <iomanip>
using namespace std;