Question: #include using namespace std; int main() { int x [3] = {22, -4, 0}; cout < < Current array: < < x[0] < <
#include
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
Get step-by-step solutions from verified subject matter experts
