Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 4

2 Posted Topics

Member Avatar for Lenny19

Narue you told Larry19 to "Set them both (min and max) to the first item in the array." I don't understand the theory behind this step?? Why r u setting them both to the first item in the array? What if it finds 2 values smaller, does it choose the …

Member Avatar for saeed67
0
1K
Member Avatar for momike205

Here is the program: int i,n; double v_in[20+1],v_out[20+1]; cout << "\ninput n ? "; cin >> n; for(i=1;i<=n;i++) { cout << "input v_in[" << i << "] ? "; cin >> v_in[i]; } // reverse v_in and store the result in v_out for(i=1;i<=n;i++) { v_out[i] = v_in[n-i+1]; } cout << …

Member Avatar for momike205
0
117

The End.