Quantcast
Channel: Programmers Heaven Forums RSS Feed
Viewing all articles
Browse latest Browse all 2703

Arrays question

$
0
0
C++ newb here. have this assignment and its driving me crazy. need some help. thanks.

Arrays
Write a C++ program to perform the pseudo code listed below.

Display message - “*** This program was written by your name ***”
Display message - “ *** This program features Arrays ***”
Display message - “Enter 5 numbers following each with Enter.”
Input to array variable Use for loop here
Display message - “The numbers you entered were: a b c d e and f” //use for loop here
Display message - “Enter one of the numbers above, and then enter the index that will display that number. ”
Input to variable
Input to index variable
Display message - “The number you entered was” X “does it equal this number? ”



Output should look a lot like this. Notice the “and” between the last two numbers.



*** This program features arrays ***

Enter 5 numbers following each number with enter

22.3
15.4
33
52
32
the numbers you entered were: 22.3, 15.4, 33, 52, and 32

Enter one of the numbers above and then enter
the index that will display that number
33
now enter the correct index
2
the number you entered was 33. does it equal this number? 33



press any key to continue.....

I have the first part but i'm confused on how to make the second part work.

Here is what i have so far..


#include <iostream>
using namespace std;

double values[5] = {0, 0, 0, 0, 0};
int main(){

int i;
int n;
double values[5];

cout <<
" *** This program was written by *** " << endl <<endl;
cout <<
" *** This program features Arrays *** " << endl <<endl;
cout <<
" Enter 5 numbers following each number with ENTER. " << endl <<endl <<endl;
for(i = 0; i < 5; i++){
cin >> values[i];
}
cout << endl;
cout <<
"the numbers you entered were ";
for

(i = 0; i < 4; i++) {
cout << values[i] <<
", ";
}
cout <<
"and " << values[4];


cout << endl << endl;
cout << "Enter one of the numbers above and then enter the index that will display that number";
cin >> n;
for (i = 1; i <= n; i++) {
values[i]++;
}

return 0;


Viewing all articles
Browse latest Browse all 2703

Trending Articles