Beginner C/C++

Moderators: None (Apply to moderate this forum)
Number of threads: 5430
Number of posts: 16951

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Arrays question Posted by archsemyaz on 7 Nov 2012 at 3:26 PM
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;

Thread Tree
archsemyaz Arrays question on 7 Nov 2012 at 3:26 PM



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.