Search:

Type: Posts; User: Dummies102

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,919

    nice game =)

    nice game =)
  2. Replies
    3
    Views
    1,919

    Checkers/Tic-Tac-Toe

    Hi everyone, is there anyone out there who would like to write a checkers or tic tac toe game, or maybe both? I'm looking for someone on the upper side of begginer who would like to write these games...
  3. Thread: Bots

    by Dummies102
    Replies
    6
    Views
    1,161

    ya, incase you couldn't read between the lines, I...

    ya, incase you couldn't read between the lines, I was telling you,
    "read the damned tutorial and see how much you actually have to learn before you have little robots running around checking your...
  4. Replies
    6
    Views
    1,359

    well... here's the function: int PythSimp(int...

    well... here's the function:

    int PythSimp(int i, int one, int two, int a)
    {
    one = one * one;
    two = two * two;
    one = one + two;
    for (i=1;one % i !=0;i++)
    {
    two=one/i;
  5. Replies
    6
    Views
    1,359

    thanks all

    thanks all
  6. Thread: Bots

    by Dummies102
    Replies
    6
    Views
    1,161

    read the tutorial

    read the tutorial
  7. Replies
    6
    Views
    1,359

    can I have two returns?

    can I have an inted function return two values? thanks
  8. Thread: for loop

    by Dummies102
    Replies
    4
    Views
    1,082

    well, depends what you want the program to do,...

    well, depends what you want the program to do, the first one is:
    j=30, take away 1 from j as long as j is greater than 0.
    the second one would be:
    j=30, take away 1 from j as long as j is j.
  9. Replies
    4
    Views
    1,168

    learn

    definatly learn cpp thouroughly before you attempt to to learn AI, you'll find yourself very lost most of the time if you don't know the language. You have to start small, then maybe once you know...
  10. Replies
    2
    Views
    3,222

    checking for whole number

    is there a way to check to see if a number is whole?
  11. Replies
    2
    Views
    1,223

    oh, heh, ya, sorry, not 100% sure on what they...

    oh, heh, ya, sorry, not 100% sure on what they were called, ya, the operators were what I was looking for, thanks.
  12. Replies
    4
    Views
    25,939

    random maze

    that unreged persons idea about a program that generates random mazes and then solves them is a great idea, it would be fun with the AI you'd have to make.
  13. Replies
    12
    Views
    1,342

    #include #include int...

    #include <iostream.h>
    #include <math.h>

    int main()
    {
    double x, y;
    cout <<"This program will find x^y. please enter x(number) and then y(power)";
    x = pow(x, y);//this is the pow function, it...
  14. Replies
    10
    Views
    2,803

    would it be easyer to just have: double a, b,...

    would it be easyer to just have:

    double a, b, c;
    for(;;)//just add this if you want this to loop forever, I know unorthodox, but works.
    {
    cout <<"please enter your grades";
    cin>>a>>b>>c;
    a =...
  15. Replies
    2
    Views
    1,223

    boolean functions

    does anyone have a list of boolean functions, or a link to one?
    just simple stuff like a > 1, and < 2. and being the function I need to know, etc. thanks
  16. Replies
    12
    Views
    1,342

    View Post

  17. 33's not a perfect square, so the program would...

    33's not a perfect square, so the program would say something like, "that's not a perfect square". and thanks for the code, it'll give me some great ideas.

    here's some of the code I have now, but...
  18. finding out what two numbers go into a number with no remainder.

    I'm trying to make a program that will try to find two perfect square numbers(4, 9, 16, etc)(x, and y) that go into another number(z) with no remainder, then try to square root x and y as far as they...
  19. Replies
    2
    Views
    1,037

    return to the main()

    I have a main program with a switch statement, and each case pulls up a function which is a program, how, once the function is run, go back to the main program? So like if the program asks me what I...
  20. Replies
    4
    Views
    1,027

    just put the whole function of a card game in a...

    just put the whole function of a card game in a file like poker.h and call it in your main program, and when you need poker, just call it like you normally would. When chop up your program and put it...
  21. Replies
    4
    Views
    1,027

    .h

    just make a file and save as blackjack.h or poker.h from your compiler. then on your main file, under all of your #include s, do:
    #include "c:/directory where header files are/poker.h"
    and so...
  22. Replies
    5
    Views
    2,519

    oh...

    ohh... well now I feel stupid, i tryed this and it gave me an error the first time, now it works.... thanks
  23. Replies
    5
    Views
    2,519

    well, here's my program: #include ...

    well, here's my program:

    #include <iostream.h>
    #include <math.h>

    int pyth(double one, double two);


    int main()
    {
  24. Thread: C++ Game

    by Dummies102
    Replies
    47
    Views
    4,578

    cool game, need to run it from comand prompt tho

    cool game, need to run it from comand prompt tho
  25. Replies
    5
    Views
    2,519

    return as a double?

    is there a way to make return count as a double instead of an int? thanks
Results 1 to 25 of 33
Page 1 of 2 1 2