Programming

profileZXC!@#
Chap-11_25.cpp

//Intermediate25.cpp - increases the prices stored in //an array and then displays the increased prices //Created/revised by <your name> on <current date> #include <iostream> #include <iomanip> using namespace std; int main() { cout << fixed << setprecision(2); //declare array double prices[10] = {4.5, 6.75, 23.0, 21.5, 5.25, 8.99, 9.99, 10.89, 3.99, 4.0}; return 0; } //end of main function