C/C++ Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsProgrammingC/C++ Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
  #1  
Old October 23rd, 2005, 05:02 PM
spaceytrin spaceytrin is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Sep 2005
Posts: 2 spaceytrin User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 7 m 30 sec
Reputation Power: 0
median of even slotted array

I have this program that I need to write. here is what I have, I'm stuck with trying to find the median of array. There should be an option for whether or not the array has even or odd slots. Down at the bottom is what I have for this option, but am getting errors. Any suggestions?

#include <iostream>
#include <iomanip>
using namespace std;

int main()
{

float temp, input, median;
int inputcount=0,n, m;
float ary[11] ;

cout << "Enter values: do -1 to stop program" << endl;

cin >> input;

while(input != -1 && inputcount < 9)
{
inputcount++;
ary[inputcount] = input;
cin >> input;
}

for(int i=0; i < inputcount+1; i++)
{
for( int j=0; j<inputcount; j++)
{
if( ary[j] > ary[j+1])
{
temp = ary[j];
ary[j] = ary[j+1];
ary[j+1] = temp;
}
}
}

cout << endl << "Array Values:" << endl;

for(int x=1; x<inputcount+1; x++)
{
cout << ary[x] <<endl;
}

if(inputcount % 2 == 0){
inputcount/2 = n;
ary[n] + ary[n+1] = temp;
temp/2 = median;
}
else{
inputcount - 1 = n;
n/2 = m;
m + 1 = n;
ary[n] = median;
}
cout << endl << "The median is:" << median;

return 0;
}

Reply With Quote
  #2  
Old October 24th, 2005, 02:40 AM
Itsacon's Avatar
Itsacon Itsacon is offline
Command Line Warrior
Click here for more information. Click here for more information
 
Join Date: Aug 2004
Location: Sector ZZ9 Plural Z Alpha
Posts: 992 Itsacon User rank is Lance Corporal (50 - 100 Reputation Level)Itsacon User rank is Lance Corporal (50 - 100 Reputation Level)Itsacon User rank is Lance Corporal (50 - 100 Reputation Level)  Folding Points: 732741 Folding Title: Super Ultimate Folder - Level 2Folding Points: 732741 Folding Title: Super Ultimate Folder - Level 2Folding Points: 732741 Folding Title: Super Ultimate Folder - Level 2Folding Points: 732741 Folding Title: Super Ultimate Folder - Level 2Folding Points: 732741 Folding Title: Super Ultimate Folder - Level 2Folding Points: 732741 Folding Title: Super Ultimate Folder - Level 2Folding Points: 732741 Folding Title: Super Ultimate Folder - Level 2
Time spent in forums: 6 Days 13 h 37 m 16 sec
Reputation Power: 5
Send a message via ICQ to Itsacon
you're using math style assignments, instead of program style.
In C, the value goes to the right, and the variable to the left...
try this:
cpp Code:
Original - cpp Code
  1. n = inputcount - 1;
  2. m = n/2;
  3. n = m + 1;
  4. median = ary[n];
__________________
This is my code. Is it not nifty?

"The biggest problem encountered while trying to design a system that was completely foolproof, was, that people tended to underestimate the ingenuity of complete fools."
---Douglas Adams


Join the Itsacon fanclub!    
Zero Tolerance: Spammers banned so far: 275

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsProgrammingC/C++ Help > median of even slotted array


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway