Write, compile and run a program that declares three one dimensional arrays name
ID: 3636970 • Letter: W
Question
Write, compile and run a program that declares three one dimensional arrays named price, quantity and amount.Each array should be declared in main() and be capable of holding 10 double-precision numbers. The numbers to store in price are as follows: 10.62, 14.89, 13.21, 16.55, 18.62, 9.47, 6.58, 18.32, 12.15, and 3.98. The numbers to store in quantity are, 4, 8.5, 6, 7.35, 9, 15.3, 3, 5.4, 2.9, and 4.8. The program should pass these three arrays to a function named extend(), which will calculate elements in the amount aray as the product of teh corresponding elements in the price and quantity arrays(for example amount[1]=proice[1]*quantity[1]).After extend() has passed values to the amount aray, the values in the array should be displayed from within main().Explanation / Answer
#include using namespace std; int main(){ double* price[10]={10.62, 14.89, 13.21, 16.55, 18.62, 9.47, 6.58, 18.32, 12.15, 3.98}; double* quantity[10]={4, 8.5, 6, 7.35, 9, 15.3, 3, 5.4, 2.9, 4.8}; double amount[10] = extend(price, quantity); coutRelated Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.