Skip to content

Instantly share code, notes, and snippets.

#unclude <iostream>
#include <string>
#include <iomanip>
using namespace std;
void print(string, string, double, double, int, int);
int main()
{
string firstItem, secondItem;
double firstPrice, secondPrice;
@Ottzoa
Ottzoa / TicTacToe.cpp
Last active March 24, 2018 00:02
Main
#include "TicTacToe.h"
#include<iostream>
#include<stdlib.h>
using namespace std;
TicTacToe::TicTacToe()
{
int n = 1;
int i = 0;
int j = 0;