Search found 1 match

by funningboy
Mon Sep 04, 2006 10:31 am
Forum: Volume 101 (10100-10199)
Topic: 10107 - What is the Median?
Replies: 74
Views: 31762

10107

#include <iostream.h>
#include <string.h>
#include <stdio.h>


const int size=1000;

void msort(int *array,int num); //method
long int process(int *array,int num);

int main(){

int array[size];
int n,i=0;
long int middle;

while(scanf("%d",&n)!=EOF){
array =n;
i++;
msort(array,i ...

Go to advanced search