Search:

Type: Posts; User: Npratt23

Search: Search took 0.00 seconds.

  1. #include #include #include...

    #include <iostream>
    #include <fstream>
    #include <iomanip>
    #include <string>


    using namespace std;
    const int ELEMENT = 9;
    const int PRICE = 3;
    const int NAME = 9;
  2. Why does it output 0-5 and not the selected partNumbers? What is wrong?

    void process(double partPrice[ELEMENT][PRICE], string partNames[NAME])
    {
    int j = 0;

    const int size = 5;
    string custName[size];
    string state[size];

    for (j=0; j<size; j++)
    {
  3. Replies
    10
    Views
    1,271

    I was trying to check to see if the entry has be...

    I was trying to check to see if the entry has be entered
  4. Replies
    1
    Views
    1,165

    printing out selected items only

    I have tried everything I can think of.

    I can not figure out how to check to see if an item has been selected.
    do I need to create a return value function to have the program keep track of the...
  5. Replies
    10
    Views
    1,271

    still having problems

    I still can't get the choices to accumulate.
  6. Replies
    10
    Views
    1,271

    I edited my message

    I edited my message
  7. Replies
    10
    Views
    1,271

    making selections from a struct

    The program has to read a file into an array. after the struct is into an array the user must make up to 8 selections.

    I have a void function to make the sections but I don't know how to print...
Results 1 to 7 of 7