mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-22 21:41:59 +03:00
52 lines
922 B
C
52 lines
922 B
C
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main()
|
|
{
|
|
int a[10], n, i, j, temp;
|
|
float mean, median;
|
|
|
|
printf("Enter no. for Random Numbers :");
|
|
scanf("%d", &n);
|
|
for (i = 0; i < n; i++)
|
|
{
|
|
a[i] = rand() % 100;
|
|
}
|
|
printf("Random Numbers Generated are :\n");
|
|
for (i = 0; i < n; i++)
|
|
{
|
|
printf("\n%d", a[i]);
|
|
}
|
|
printf("\n");
|
|
printf("\nSorted Data:");
|
|
for (i = 0; i < n; i++)
|
|
{
|
|
for (j = 0; j < n; j++)
|
|
{
|
|
if (a[i] < a[j])
|
|
{
|
|
temp = a[i];
|
|
a[i] = a[j];
|
|
a[j] = temp;
|
|
}
|
|
}
|
|
}
|
|
for (i = 0; i < n; i++)
|
|
{
|
|
printf("\n%d", a[i]);
|
|
}
|
|
|
|
if (n % 2 == 0)
|
|
{
|
|
median = (a[n / 2] + a[(n / 2) - 1]) / 2;
|
|
}
|
|
else
|
|
{
|
|
median = a[n / 2];
|
|
}
|
|
printf("\nMedian is : %f", median);
|
|
|
|
return 0;
|
|
}
|