Created
March 30, 2015 01:11
-
-
Save naruse/53829199ff36ffbb684e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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