c++ program help please

May 7, 2015 at 3:02am
Write a C++ program to use three arrays. One that contains 10 integer part numbers, one that contains 10 floating-point prices, and one that contains 10 string descriptions corresponding to the part number and price. The arrays can filled via a loop prompt cycle, or hard coded constants or from a disk file - your choice on the load mechanism. Display the arrays on column format.
May 7, 2015 at 4:44am
You're likely not to get a response for any of your posted homework problems. No one wants to do your homework for you. Give it your best shot, post the problem with YOUR code, and the community will help guide you in the right direction.
May 7, 2015 at 8:53am
to make an array use [NELEMENTS] after the decleration
To get input read one of the other threads you made.

1
2
3
4
5
int main()
{
    int integers[10];
    int floats[10];
}
May 7, 2015 at 12:18pm
we dont do assignments here
Topic archived. No new replies allowed.