Skip to content

Instantly share code, notes, and snippets.

@naruse
Created March 30, 2015 01:11
Show Gist options
  • Select an option

  • Save naruse/53829199ff36ffbb684e to your computer and use it in GitHub Desktop.

Select an option

Save naruse/53829199ff36ffbb684e to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace::std;
int width = -1;
int height = -1;
char** mineBoard;
int main(int argc, char* argv[]) {
while (width != 0 && height != 0) {
cin >> width >> height;
mineBoard[width][height];
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment