Search found 1 match

by JSGS
Fri Sep 13, 2013 10:29 pm
Forum: Volume 101 (10100-10199)
Topic: 10189 - Minesweeper
Replies: 418
Views: 125631

Re: 10189 - Minesweeper

I cant' for the life of me, find what is wrong with my code below.

Any hints from experienced programmers out there?


#include <iostream>

using namespace std;

int main()
{
int m = 0, n = 0;
int iter = 1;
int dx[8] = {-1, -1, -1, 0, 0, 1, 1, 1};
int dy[8] = {-1, 0, 1, -1, 1, -1, 0, 1};
int ...

Go to advanced search