Search found 1 match

by Zopper
Mon Oct 10, 2011 1:17 am
Forum: Volume 101 (10100-10199)
Topic: 10189 - Minesweeper
Replies: 418
Views: 125640

Re: 10189 - Minesweeper

Alright, I'm getting RE (runtime) errors, anyone see anything wrong here?

#include <iostream>
#include <string.h>

int main()
{
int x=-1,y=-1;
int count=1;

while(std::cin >> x >> y)
{
if(x==0&&y==0)
return 0;

char field[10000][10000];
//*field=new char[x];

//for(int i=0; i<x; i ...

Go to advanced search