Search results

  1. Z

    Please Help me with this Assignment - Game Of Life in C!

    Thanks...Yeah, ive learnt a lot and i do hope i dont have to design any program like that again! lol! i dont understand how you guys get it!!! but anyways, thats probably why im not ny computer sciences!!! Good luck to you as well, in whatever you're doing! And know that you have genuinely...
  2. Z

    Please Help me with this Assignment - Game Of Life in C!

    To all those who have have helped me during this assignment, i want to say a big thank you!!!!! You have helped me understand the thing much better!!! Hammerhead: Special thanks to you for guiding me!!! sounds like a speech! lol!!! take care of yourselves and thank you again for all!! :)
  3. Z

    Please Help me with this Assignment - Game Of Life in C!

    Hmm...but that was not in my copybook!!!
  4. Z

    Please Help me with this Assignment - Game Of Life in C!

    This initialisation is leading to nowhere...According to me, it should be entering 0 for each cells, put nothing appears on the screen! Only are appearing on the screen! :huh:
  5. Z

    Please Help me with this Assignment - Game Of Life in C!

    Now its fine until it ask me do you want to continue...then it says press any key to continue!! :S
  6. Z

    Please Help me with this Assignment - Game Of Life in C!

    i think there's a mistake somewhere...
  7. Z

    Please Help me with this Assignment - Game Of Life in C!

    Urm, i was thinking...im working on it right now...can i post it and you tell me if there are things which are wrong in it???
  8. Z

    Please Help me with this Assignment - Game Of Life in C!

    Thanks for reminding me...im still a noob in that and that was to show how bad i am at it!! tomorrow is the day...lol! so im going to work on it again...using arrays, some loops, the neighbours, count, ifs...thanks for the help!!!! :hap2:
  9. Z

    Please Help me with this Assignment - Game Of Life in C!

    OMG! THANK YOU!!! For at least teeling me this is good! yeah, i figured that out...was scrubbling on a piece of paper...now im working on how to program the next generation..im using this loop you are really guiding me through this! :)
  10. Z

    Please Help me with this Assignment - Game Of Life in C!

    Dont worry, I cant fool my lecturer and he knows my way of working too well for me to even think of copying! LOL! :) otherwise, i would never have come here for HELP!!!! AND THEN, everywhere ive looked, they have done it in a language i dont understand... Im meant to do it on my own, and its...
  11. Z

    Please Help me with this Assignment - Game Of Life in C!

    #include<stdio.h> int main () { int array[3][3]; int g; int i; char n; int liveneighbors[3][3]; printf("Welcome to the Game of Life\n"); printf("Generation 0\n"); printf("Please enter 1 for an Alive cell and 0 for a Dead cell\n"); printf("State for cell A\n"); scanf("%d"...
  12. Z

    Please Help me with this Assignment - Game Of Life in C!

    yeah...im using C language!!! and im starting to have a headache now!
  13. Z

    Please Help me with this Assignment - Game Of Life in C!

    Isnt it supposed to be for(int i=0;i<n;i++) { for(int j=0;j<n;j++) { //elements referred as board[i][j] } }
  14. Z

    Please Help me with this Assignment - Game Of Life in C!

    Thw whole thing is confusing, man!!! maybe not for you, but for me it is...
  15. Z

    Please Help me with this Assignment - Game Of Life in C!

    I have done this loop..but thats for an array of [3][3]..the board dimension of the gameboard must be 15 x 15 or 10 x 10!!!! the thing is i dont know how to put a 2d array of 9 elements into a 15 y 15 board! :S :S :S
  16. Z

    Please Help me with this Assignment - Game Of Life in C!

    This is what ive done so far with friends...but the thing is im supposed to use an array of [15][15] and im confused about it! How do i put in my program now??? i look for the book, thanks, Booo!
  17. Z

    Please Help me with this Assignment - Game Of Life in C!

    Thanks all for your replies! Im trying all these... Booo, im really grateful..im downloading the book, thanks! i hope it can help! :ashamed:
  18. Z

    Please Help me with this Assignment - Game Of Life in C!

    Thanks...this is of great help, you cant imagine! we have been using switch case thinking it was only an array of 3 by 3! And I dont think Ive thought about the 5 neighbours...will check it today! Thanks A LOT! But yesterday, our lecturer asked us to do it on an 15 by 15...and we got to use...
  19. Z

    Please Help me with this Assignment - Game Of Life in C!

    hello all, Im in desperate need to do an assignment on Game of life in C language! And despite doing programming for 1 week, i still dont know how to implement this or write program in a proper manner! I have been reading books, looking for info on it o the internet, but i cant seem to start...
Back
Top