Search:

Type: Posts; User: Shazly

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    645

    I know that but what if someone wants to make a...

    I know that but what if someone wants to make a username or a password that contains letters and numbers.
    How can I make the program accept such data.
    Thank you.
  2. Replies
    2
    Views
    728

    Thank you.

    Thank you.
  3. Replies
    3
    Views
    645

    A string/int variable

    Is there a variable that can hold string and int in the same time?
    If not, what can I do if I want to input data with string and int like a password for an example.
  4. Replies
    2
    Views
    728

    How to make a program .exe

    I would like to know how can I make a simple program .exe so that I don't have to open it through code blocks every time.
  5. Thread: .exe

    by Shazly
    Replies
    1
    Views
    695

    .exe

    How to make a source code into a functional program that a user can open and use without coming across the source code and building or running it. Thank You.
  6. Thread: A small problem

    by Shazly
    Replies
    1
    Views
    782

    A small problem

    How do i get the fraction for any decimal number in a variable?




    #include<iostream>
    using namespace std;


    int main()
  7. Replies
    6
    Views
    1,631

    I didn't get that at first!! nice advise by the...

    I didn't get that at first!! nice advise by the way i modified it!!




    bool board_3_by_3_win(char board[][8], char XO)
    {
    if((board[0][0] == XO && board[0][1] == XO && board[0][2] == XO)...
  8. Replies
    6
    Views
    1,631

    The 3 by 3 board only has 8 possibilities of a...

    The 3 by 3 board only has 8 possibilities of a player wining!! I could make a loop that checks all like
    bool X_wins_4 But I just copied and pasted this from an older
    version of tic tac toe with...
  9. Replies
    6
    Views
    1,631

    It's complicated for me too!! that's why I broke...

    It's complicated for me too!! that's why I broke it down to many functions. about the error, I don't get any error with the compiler over here. I just though the numbers input once better than asking...
  10. Replies
    6
    Views
    1,631

    Tic Tac Toe Advanced

    Tell me if you find any bugs or holes in the code and if you have any question.
    Note: You type in the row and column number in together with no space between them. Thank You :D




    // Done by...
Results 1 to 10 of 10