Hi,
I need some help writing this program. The question states to write a program that specifies three one-dimensional arrays named current, resistance, and volts. Each array should be capable of holding 10 elements. Using a for loop, input values for the current and resistance arrays. The entries in the volts array should be the product of the corresponding values in the current and resistance arrays (thus, volts = current * resistance). After all of the data has been entered, display the following output:
Current Resistance Volts:
Under each column heading display the appropriate value.