Search:

Type: Posts; User: Blazefury5

Search: Search took 0.01 seconds.

  1. cout

    cout<<"Please enter your first number:";
    cin>>integerVariable1;

    cout<<"Please enter the desired operation:";
    cin>>operation;

    int result = Calculate( &integerVariable1, operation );
    k I...
  2. NEED HELP! :( Simple Calculator using Pointers.

    Need help making a Calculator program.
    I need help on the function I have set, idk if I'm doing it correct or not. and how to have a function call for it. I tried using Calculate();

    is what is...
  3. And that's all I needed basically, although I...

    And that's all I needed basically, although I said flowchart I was just using that as an example for someone to give me "SOME" type of feedback.
  4. Making a Hangman game without using Data type

    Ok so I need to make a Hangman game without using string data type
    and it needs to display the hangman as the game goes.
    such as if the guess is wrong show the gallows if wrong =2 show head on...
  5. Replies
    6
    Views
    20,257

    what's your email?

    what's your email?
  6. Replies
    11
    Views
    3,080

    Figured it out works perfectly needed (result...

    Figured it out works perfectly
    needed (result "==" 2) etc.
    and needed a closing declaration to close int main()
    before the void functions
    and got the loop to work as you mentioned above, was...
  7. Replies
    11
    Views
    3,080

    Well you might consider making what you have so...

    Well you might consider making what you have so far in main into


    void flipOneCoin ( void ) {
    }

    Then make your main into something else, which calls flipOneCoin() in a loop.

    Can you also...
  8. Replies
    11
    Views
    3,080

    if (result=1) { cout

    if (result=1)
    {
    cout<<"\nThe Result is Heads";
    if(AskForInput == 'h')
    cout << "\nYou guessed correctly!";
    }
    This was posted earlier I tried it and it will go...
  9. Replies
    11
    Views
    3,080

    and then need to make it ask if I want to flip...

    and then need to make it ask if I want to flip again(which is not included yet).

    what value do I return it to? or how would I loop it to make it repeat
  10. Replies
    11
    Views
    3,080

    if (result=1) I tried doing such but it would...

    if (result=1)

    I tried doing such but it would just always say correct without saying incorrect.
    It's like it counted 2 as result = 1 or something
  11. Replies
    11
    Views
    3,080

    so I do have make case 'h' and a case 't'?

    so I do have make case 'h' and a case 't'?
  12. Replies
    11
    Views
    3,080

    Need Help on Coin Toss Program

    need to use the random number generator I am using in the code.
    need it to display the results I have listed under void for the result of the coin toss.
    and then need to make it ask if I want to...
Results 1 to 12 of 12