1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
#include <iostream>
#include <math.h>
#include <cstdlib>
#include <cstring>
using namespace std;
int main()
{
void generateRand(int[], int, int, int);
bool search(int[], int, int);
void printArray(int[], int);
void bubblesort(int[], int, int);
float m, mean;
int data, length;
m= (data, length) ;
cout << "The mean of the values you entered is: " << m << endl;
return 0;
}
void generateRand(int data[], int num, int min, int max)
{
int a;
min = 1;
max = 1000;
cout << "The 100 numbers generated will be between 1 and 1000 " << endl;
a = rand()% 1000 +1;
{
for(int x=0; x < num; x++)
{
if(data[x]==a)
{
a = rand()% 1000 +1; //takes random number
{
x=0;
}
}
data[x]=a;
}
}
}
bool search(int data[], int l, int x) // search for x make sure stored in data
{
int a;
cout << endl;
for(int x = 0; x < data[x]; x++)
{
if(data[x]==a)
{
a = rand()% 1000 +1;
{
x=0;
}
return true;
}
else
{
return false;
}
}
}
void bubblesort(int a[], int length, int x) //sort values least to greatest
{
int swap;
for(int x=1; x < length ; x++)
{
for( int j=0; j<(length-x);j++)
{
if( a[j] > a [j+1] )
{
swap=a[j];
a[j] = a[j+1];
a[j+1]=swap;
cout << "check" <<endl;
}
}
}
}
void printArray(int data[], int length) // print values
{
for(int x = 0; x < length ; x++)
{
cout << " \n";
cout << " THE SORTED VALUES LEAST TO GREATEST! " << endl;
cout << "The values are:" << data[x] << endl;
cout << "Max number:" << endl;
cout << "Min number" << endl;
}
}
float mean(int data[], int l)
{
float sum=0,y=0;
float average;
for (int x=0; x<l ; x++)
{
y=data[x];
sum+=y;
}
average = sum /l;
return average;
}
/*bool search(int data[], int length, int x)
{
int i,x;
if (data[i]= a)
{
a = rand()% 1000 +1;
{
i=0;
}
return true;
}
else
{
return false;
}
}
*/
|