123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
#include <iostream> #include <iomanip> #include <ctime> #include <cstdlib> using namespace std; struct Point { double x=1; double y=1; }; void print (double a, double b); double random(unsigned long int & seed); double small_value(double smallx, double smally); double smallest_value( double smallx, double smally); int main() { const int SIZE = 1000; unsigned long int seed; srand(time(NULL)); seed = rand(); Point array[SIZE]; double smallx= array[0].x; double smally= array[0].y; for(int i=0; i<SIZE; i++) { array[i].x = random(seed); array[i].y = random(seed); if(array[i].x < smallx && array[i].y < smally) { smallx= array[i].x; smally= array[i].y; } } print(smallx,smally); return 0; } double random(unsigned long int & seed) { const int MODULUS = 15749; const int MULTIPLIER = 69069; const int INCREMENT = 1; seed = ((MULTIPLIER*seed)+INCREMENT)%MODULUS; return double (seed)/MODULUS; } void print (double a, double b) { cout << "Smallest x: " << a<< endl; cout <<"Smallest y: " << b << endl; }
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
#include <iostream> #include <iomanip> #include <ctime> #include <cstdlib> using namespace std; struct Point { double x = 1; double y = 1; }; void print(double a, double b); double random(unsigned long int & seed); void small_value(Point [], const int, unsigned long int); // ADDED... double small_value(double smallx, double smally); double smallest_value(double smallx, double smally); int main() { const int SIZE = 1000; unsigned long int seed; srand(time(NULL)); seed = rand(); Point array[SIZE]; small_value(array, SIZE, seed); //double smallx = array[0].x; //double smally = array[0].y; //for (int i = 0; i < SIZE; i++) //{ // array[i].x = random(seed); // array[i].y = random(seed); // if (array[i].x < smallx && array[i].y < smally) // { // smallx = array[i].x; // smally = array[i].y; // } //} //print(smallx, smally); return 0; } double random(unsigned long int & seed) { const int MODULUS = 15749; const int MULTIPLIER = 69069; const int INCREMENT = 1; seed = ((MULTIPLIER*seed) + INCREMENT) % MODULUS; return double(seed) / MODULUS; } void small_value(Point array[], const int SIZE, unsigned long int seed) { double smallx = array[0].x; double smally = array[0].y; for (int i = 0; i < SIZE; i++) { array[i].x = random(seed); array[i].y = random(seed); if (array[i].x < smallx && array[i].y < smally) { smallx = array[i].x; smally = array[i].y; } } print(smallx, smally); } void print(double a, double b) { cout << "Smallest x: " << a << endl; cout << "Smallest y: " << b << endl; }