c++ program help please

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.
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.
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];
}
we dont do assignments here
Topic archived. No new replies allowed.