Search:

Type: Posts; User: jason007thomas

Search: Search took 0.01 seconds.

  1. I need help or clues on how to build an array in C++?

    This program was design to simulate an ATM machine and so far it works.
    I realize i need other aspects in this program to be more life like
    for EX. I need to build an array that when I punch in a...
  2. for loop for count in my program

    So far I have this

    number correct (divided by) total questions = score


    for(Answer = 0; Answer<5; Answer++)



    program needs to count number correct
  3. indinting code

    I indented but when I put the [code] tags in it lines everything up for some reason.
  4. Replies
    11
    Views
    1,567

    I don't know I keep forgetting - I'm really just...

    I don't know I keep forgetting - I'm really just trying to relearn C++ but I'm not to sure how the indentation should look
  5. how do a make my program calculate a test grade

    here is the test i made and it all checks out - now I need it to print out the grade made on the test after completion.

    how do I do this?


    #include <iostream>
    using namespace std;

    int...
  6. Replies
    4
    Views
    1,272

    Thankvyou smokeyAngel

    It works
    you were right I had to just use my constant with single quotes

    Now I need to learn how to calculate the grade average on the test.



    #include <iostream>
    using namespace std;
  7. Replies
    4
    Views
    1,272

    confusion on a nested loop program

    I'm trying to build a 10 question quiz and I'm designing it to where if you get the write answer it will move to the next question.

    the problem I'm having is its saying (a,b,c,d,) is not...
  8. Replies
    11
    Views
    1,567

    finally got it to work Thank You everybody ...

    finally got it to work
    Thank You everybody



    #include <iostream>
    using namespace std;

    int main()
    {
  9. Replies
    11
    Views
    1,567

    this is what I got but it's one really small...

    this is what I got but it's one really small problem that I still have and cannot find





    #include <iostream>
    using namespace std;

    int main()
  10. Replies
    11
    Views
    1,567

    I made changes and now the command prompt wont...

    I made changes and now the command prompt wont stay put long enough for me to test it out
    Do I need a break some where in my code or do I need another cin.get() inside somewhere?




    #include...
  11. Replies
    11
    Views
    1,567

    Nested Loops for begginers

    How do I get this block of code to loop conditionally?
    do I need to put this if else inside a while loop, do while, or another if else



    #include <iostream>
    using namespace std;

    int main()...
  12. 3 input to print 3 outputs at the same time

    I need this program to take three items for input then give three outputs for results. Is this program I wrote practical? its bug free and it builds but something in the style I dont like it seems I...
  13. thanks

    I'm trying to implement these segestions tonight after I get out all my classes today!!!
  14. trying to write a tic, tac, toe program

    Ive start my program for the most part but I just need some small tips on which direction I need to go and where to put my while loop and basically does it look good so far (ITS NOT HOMEWORK!!!! I'm...
Results 1 to 14 of 15