Skip to content

Instantly share code, notes, and snippets.

#include <stdio.h>
#include <stdarg.h>
class Results
{
private:
int numberOfTests;
int numberOfFailures;
public:
// Andrew Geltz
// COP3223
// Assignment 5
// This program generates two poker hands and tells which one wins.
// I took a structural approach because it made things much cleaner
// and more logical to access.
// Include standard libraries and time for random
#include <stdio.h>