Search found 1 match
- Thu Nov 29, 2007 5:17 pm
- Forum: Volume 5 (500-599)
- Topic: 532 - Dungeon Master
- Replies: 39
- Views: 10992
Please help me !
#include<iostream> using namespace std; char q[33][33][33]; void find (char [33][33][33],int,int,int,int [1],int); int main( int argc, char * argv[] ) { int x,y,z,sx,sy,sz,i,j,g,t,ans[1]; while(( cin >> z >> y >> x )!=0) { t=0; for(i=0;i<=31;i++) for(j=0;j<=31;j++) for(g=0;g<=31;g++) q[i][j][g]=4; ...