Search:

Type: Posts; User: slimdime

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    2,833

    Pseudo Code (Please Help)

    I need Pseudo Code:

    1. Declare variables
    2. Accept Input – weeklySales
    3. Calculate Gross Pay = Weekly Sales * .07
    4. Calculate Federal Tax = Gross Pay * .18
    5. Calculate Social Security =...
  2. Replies
    2
    Views
    2,989

    That worked!! Thanks Elysia.

    That worked!! Thanks Elysia.
  3. Replies
    2
    Views
    2,989

    Decimals in C++

    How would I get 1960.00 - 666.40 = 1293.60 in a C++ program?? I don't want it to round the numbers. I tried:

    cout << fixed << showpoint << setprecision (2);

    but it did not work.
  4. Replies
    32
    Views
    3,381

    I am very serious about learning the language. I...

    I am very serious about learning the language. I am trying my best. And I truly appreciate all the help.
  5. Replies
    32
    Views
    3,381

    yep. you got it. C++ is hard.

    yep. you got it. C++ is hard.
  6. Replies
    32
    Views
    3,381

    GOT IT!! #include ...

    GOT IT!!




    #include <stdafx.h>

    #include <iostream>

    using namespace std;
  7. Replies
    32
    Views
    3,381

    OK. (running away very fast) Thanks.

    OK. (running away very fast) Thanks.
  8. Replies
    32
    Views
    3,381

    Getting this error: error C2065: 'counter' :...

    Getting this error:

    error C2065: 'counter' : undeclared identifier
  9. Replies
    32
    Views
    3,381

    Thanks, but it's still not working: ...

    Thanks, but it's still not working:



    #include "stdafx.h"
    #include <iostream>

    using namespace std;
  10. Replies
    32
    Views
    3,381

    IDK :( What about: for ( int x = 0; x

    IDK :(

    What about:



    for ( int x = 0; x < 15; x
  11. Replies
    32
    Views
    3,381

    Oh, a comedian. :p Ok, let me see if I can do...

    Oh, a comedian. :p

    Ok, let me see if I can do that. (be right back)
  12. Replies
    32
    Views
    3,381

    I made the change cin>> Isn't this my ForLoop...

    I made the change cin>>

    Isn't this my ForLoop



    for (counter=0;counter=<15;counter++)
  13. Replies
    32
    Views
    3,381

    I tried it: (but it didn't work) Thanks for...

    I tried it: (but it didn't work) Thanks for trying.



    #include "stdafx.h"
    #include <iostream>

    using namespace std;

    const int LIMIT = 15;
  14. Replies
    32
    Views
    3,381

    Can you give me a hint?

    Can you give me a hint?
  15. Replies
    32
    Views
    3,381

    Yea, I know it's for "summing" I'm trying to...

    Yea, I know it's for "summing" I'm trying to change it to an Array with ForLoop to print reverse.
  16. Replies
    32
    Views
    3,381

    Arrary & ForLoop

    I'm trying to do a program that will take in 10 numbers (integers) then have the out given in reverse. Ex: 1,5,9 (in) Out --> 9,5,1

    Here is my code so far:




    #include "stdafx.h"...
  17. Replies
    6
    Views
    1,345

    LOL cute.

    LOL cute.
  18. Replies
    6
    Views
    1,345

    Thanks to all that offered help. :-)

    Thanks to all that offered help. :-)
  19. Replies
    6
    Views
    1,345

    I need serious help with a program!

    I have to write a program that will do all of the following:


    Edited for all the haters.
  20. Replies
    19
    Views
    5,017

    I'm taking a C++ class and they recommend Dev C++...

    I'm taking a C++ class and they recommend Dev C++ for beginners because it's easier to use than Visual C++ and more user friendly.
  21. Replies
    6
    Views
    2,467

    Thank you all. It worked! :-)

    Thank you all. It worked! :-)
  22. Replies
    6
    Views
    2,467

    Error = fatal error C1083: Cannot open include...

    Error = fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory

    Also since I'm using Visual C++ should I add

    #include "stdafx.h"
  23. Replies
    6
    Views
    2,467

    I changed the codes: is normally...

    I changed the codes: <iostream> is normally stored in the C:\Program Files\Microsoft Visual Studio 8\VC\include folder. First check if it is still there. Then choose Tools + Options, Projects and...
  24. Replies
    6
    Views
    2,467

    C++ Miles Program

    I need help with this program. I'm compiling in Visual C++



    #include "stdafx.h"

    #include <iostream>

    float getdata();
    using namespace std;
Results 1 to 24 of 24