Question: #include #include using namespace std; int main() { int const size = 10; int i; int n[size] = { 1,2,3,4,5,6,7,8,9 }; cout < < setw(7)

#include #include using namespace std;

int main() { int const size = 10; int i; int n[size] = { 1,2,3,4,5,6,7,8,9 };

cout << setw(7) << "element:" << setw(7) << " Values" << endl;

for (i = 0; i<10; i++) cout << setw(7) << i << setw(7) << n[i] << endl;

system("pause"); }

Need the input and output files for this program in C++ as well as a flow chart and pseudocode Thank you

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!