Question: #include using namespace std; int main() { int x [3] = {22, -4, 0}; cout < < Current array: < < x[0] < <

#include using namespace std;

int main() { int x [3] = {22, -4, 0}; cout << "Current array: " << x[0] << ", " << x[1] << ", " << x[2]; cout << " Enter an integer to store at the start of the array:"; cin >> x[0]; cout << "Updated array: "; cout << x[0] << ", " << x[1] << ", " << x[2]; }

Update the given program so that, instead of just integers, the program can store a dataset of five, user-specified floating-point numbers.

The console content, following an example run of the completed program with inputs 22.2, -4, -95.6, 3, and 0, should look as follows:

 
 

 

Enter five numbers to store: 22.2 -4 -95.6 3 0

 

Array contents: 22.2 -4 -95.6 3 0

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!