Search:

Type: Posts; User: dsig111

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    1,071

    not a dead link (tested)...

    not a dead link (tested)

    Its a blackjack like game only no cards, the goal is to get the other player to hit 21 not you, and has a shared total.

    You must download and play to see its full...
  2. Replies
    19
    Views
    2,038

    also if you want to prevent it from repeating the...

    also if you want to prevent it from repeating the last value use a while statement...



    #include <time.h>
    #include <stdlib.h>

    int main (void)
    {
    int rnum, p_rnum;
  3. Replies
    19
    Views
    2,038

    the srand function sets a seed to randomize off...

    the srand function sets a seed to randomize off of and when using time to do it it will set the seed different ly each time and stop using % 11 it returns 0-10 snd when add 1 it returns 1-11...


    ...
  4. Replies
    19
    Views
    2,038

    I forgot got thrown off by the %11

    I forgot got thrown off by the %11
  5. Replies
    2
    Views
    1,071

    Source for my "backwards" game

    you can download the game here

    the source is below
  6. Replies
    19
    Views
    2,038

    try this... #include #include...

    try this...


    #include <time.h>
    #include <stdlib.h>

    int main (void)
    {
    int Numb;
  7. Replies
    6
    Views
    1,217

    yeah there are alot of errors I can't even catch...

    yeah there are alot of errors I can't even catch because the code is a little sloppy and I suggest starting over!
  8. Replies
    6
    Views
    1,217

    it should be like this... #include...

    it should be like this...


    #include <windows.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <iostream.h>
    int main()
    {
    int sel;
  9. Replies
    10
    Views
    1,552

    sorry about that it works now but if you don't...

    sorry about that it works now but if you don't believe me click here to download
  10. Replies
    10
    Views
    1,552

    Check out my game

    you can download or view screen shots of it at
    click here
  11. Replies
    1
    Views
    869

    Help with strings

    I need help...
    how can I make it so that the user can enter more than one word for thier string (ex: "blah blah", rght now I can only read the first blah)

    please help!
Results 1 to 11 of 11