Skip to content

Instantly share code, notes, and snippets.

@wildBcat
wildBcat / Program.cs
Created June 19, 2018 22:32
The stinkin' code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp4
{
class Program
{
@wildBcat
wildBcat / BullsAndCows.cpp
Created June 19, 2018 03:08
My code to separate the input and print
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
void PrintIntro();
string GetGuess();
void FiveTries();
void PrintGuess();
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
void PrintIntro();
string GetAndPrintGuess();
void GetGuessWithinLimit();