Search:

Type: Posts; User: ckeener

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,908

    my text adventure

    this is my text adventure i talked about in earlier posts. its still kinda buggy but its not too bad.


    #include <iostream.h>//needed for printouts
    #include <string.h>//needed to compare strings...
  2. Replies
    5
    Views
    1,122

    got it

    thanks for all the input but i figured it out. i didnt have the cin inside the while. thanks again for being willing to help, i may have more questions. im planning on posting the final code for...
  3. Replies
    5
    Views
    1,122

    switch problems

    im working on a texted adventure where the user can walk around a map to solve puzzles. im using a switch to move. if a player can only go east, west or south from the room they are in i have a...
  4. Replies
    2
    Views
    1,193

    passing a structure

    is there a way to set up a structure in my main and then pass the entire structure to my other functions with out passing each item individually? any help on pass structures or parts of structures is...
  5. Replies
    13
    Views
    8,454

    i have that code in already, with the exception...

    i have that code in already, with the exception of the changes to the display board function i made those changes yesterday. it still doesnt work, i get no changes to my board. its exactly what u...
  6. Replies
    13
    Views
    8,454

    giving up

    i quit, this program has defeated me. i give up, i dont care anymore! everything i try doesnt work. im through posting about it on here because everytime i geta reply i get excited that im finally...
  7. Replies
    13
    Views
    8,454

    yeah that was jus my in class rant for the day....

    yeah that was jus my in class rant for the day. its not my fault that my goal has been set to friday. i didnt really expect people to do it. however i will post my entire code. if anyone has spare...
  8. Replies
    13
    Views
    8,454

    chutes and ladders

    jus to let everyone know, trying to program chutes and ladders sucks! im about to kill someone! if anyone would like to put me out of my misery and give me c++ code for chutes and ladders i will b...
  9. Replies
    7
    Views
    1,705

    thanks for all the input, ill have to give it try

    thanks for all the input, ill have to give it try
  10. Replies
    7
    Views
    1,705

    for (r=1; r

    for (r=1; r<=10; r++)
    {
    for (c=1; c<=10; c++)
    {
    board[ROWS][COLS];
    }
    for (c=10; c>=1; c--)
    {
    board[ROWS][COLS];
  11. Replies
    7
    Views
    1,705

    i have that part, that wasnt the problem, how do...

    i have that part, that wasnt the problem, how do i go about filling it?
  12. Replies
    7
    Views
    1,705

    multidimentional character arrays

    im working on a program that has me stuck. im trying to form a grid thats 10 by 10. i want it to display the numbers from one to 100. i want to b able to insert a letter in place of a number later...
Results 1 to 12 of 12