Search:

Type: Posts; User: xenhancd

Search: Search took 0.00 seconds.

  1. Replies
    19
    Views
    2,389

    I need to learn to completely follow through on...

    I need to learn to completely follow through on my code when making edit. I had changed in the variable but failed to recognize to change it to double[items].
  2. Replies
    19
    Views
    2,389

    I am doing this for a class and the book that is...

    I am doing this for a class and the book that is assigned to help us actually really sucks. I've found reading stuff online and through forums helps to learn a lot more efficiently. I am a complete...
  3. Replies
    19
    Views
    2,389

    cout

    cout << "** Sales Item " << count + 1 << ": $" << setw(9) << setprecision(2) << price[count] << " **" << endl;
    Ended up doing it that way and it works like a charm!

    I found one big...
  4. Replies
    19
    Views
    2,389

    I do have that in my code and it displays...

    I do have that in my code and it displays correctly, however, I want to number my items. I want it to ask "Input sales item 1" "Input sales item 2" "Input sales item 3" and then on the receipt I want...
  5. Replies
    19
    Views
    2,389

    DUH! Not sure why I changed that from the get go,...

    DUH! Not sure why I changed that from the get go, I originally had total = 0.

    However, I still cannot get the sales receipt portion to look the way I need to. It seems I cannot simply just add a...
  6. Replies
    19
    Views
    2,389

    How would I go about doing that?

    How would I go about doing that?
  7. Replies
    19
    Views
    2,389

    #include #include using...

    #include <iostream>
    #include <iomanip>
    using namespace std;
    int main()
    {
    char rerun;

    do //The do-while for a program rerun option
    {
  8. Replies
    19
    Views
    2,389

    Dynamic Arrays

    I have created a program allows you to input the amount of items purchased, and then input the price of each item and the sales tax. It then creates a receipt which totals all the prices and sales...
  9. Replies
    14
    Views
    1,150

    FIXED IT! Works the way i want it! THANK YOU...

    FIXED IT! Works the way i want it!

    THANK YOU EVERYONE THAT HELPED!!!! Finally have it working the way I need it.
  10. Replies
    14
    Views
    1,150

    Made some progress, the program finally loops...

    Made some progress, the program finally loops back to the very beginning,however another issue arises now. When input the number of items for example 5, the program only asks for the price of 3...
  11. Replies
    14
    Views
    1,150

    the count++?

    the count++?
  12. Replies
    14
    Views
    1,150

    I am completely new to C++ so I don't quite...

    I am completely new to C++ so I don't quite understand...
  13. Replies
    14
    Views
    1,150

    Made some progress, the program finally loops...

    Made some progress, the program finally loops back to the very beginning but now when you input a number for amount of items, it only asks for the price of just one item... what am I overlooking here...
  14. Replies
    14
    Views
    1,150

    I have even tried to put the char rerun outside...

    I have even tried to put the char rerun outside of the do/while loop but then the program just opens and closes instantly.
  15. Replies
    14
    Views
    1,150

    When I do that, I get an undeclared identifier...

    When I do that, I get an undeclared identifier error...



    // TipCalculator.cpp
    // Neel Patel
    // Homework4, Sales Receipt, Because it can calculate and print to the screen a user inputted sales...
  16. Replies
    14
    Views
    1,150

    I am not sure I follow with the looping and...

    I am not sure I follow with the looping and including the variables



    #include <iostream>
    #include <iomanip>
    using namespace std;
    int main()
    {
  17. Replies
    14
    Views
    1,150

    Need Help Rerunning Program And Display

    I need help rerunning the program from the very beginning and I can't figure out what I am doing wrong...



    #include <iostream>
    #include <iomanip>
    using namespace std;
    int main()
    {
Results 1 to 17 of 17