Jump to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Need help with C++ Random Number Generation

Featured Replies

So my wonderful CS teacher has decided he's going to make our class revolve around ease for himself(instead of trying to make his students better at programming)....

BUT ANYWAYS....He gives us little info on how the program is to be written, and if we don't write it EXACTLY like he would, we don't get credit. I think I have written a working program(that does what he asks), but the hidden test cases keep failing so I could really use some help.

 

INSTRUCTIONS

  1. Write a function that takes an integer “count” and a double “probability"
  2. Generate “count” random numbers between 0.0 and 1.0
  3. Print the number of generated random numbers that is less than “probability”
  4. Call this new function from main()

 

MY CODE

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

int newFunction(int count, double probability) {
   
   double random;
   int total = 0;
   for(int i = 0; i < count; i++) {
      random = (double) rand() / RAND_MAX;
      if (random < probability) {
         cout << random << endl;
         total++;
      }
   }
   return total;
}

int main() {
  cout << "Enter integer for seed: " << endl;
  int seed;
  cin >> seed;
  srand(seed);
  
  int c;
  double p;
  cout << "Enter the count of numbers to be generated: " << endl;
  cin >> c;
  cout << "Enter the probability: " << endl;
  cin >> p;
  
  cout << "Number of generated random numbers less than probability entered is " << newFunction(c, p) << endl;
  
  return 0;
}

PROGRAM INPUT

1 //seed

3 //number of random numbers (count)

0.5 //value for probability

 

MY OUTPUT

Enter integer for seed: 1

Enter the count of numbers to be generated: 3

Enter the probability: 0.5

0.394383

Number of generated random numbers less than probability entered is 1

 

 

HIS OUTPUT

Enter integer for seed: 1

Enter the count of numbers to be generated: 3

Enter the probability: 0.5

0.159812

0.216901

Number of generated random numbers less than probability entered is 2

 

 

He gave us this as a skeleton for the code:

 

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

int newFunction(int count, double probability);

int main() {
  cout << "Enter integer for seed: " << endl;
  int seed;
  cin >> seed;
  srand(seed);

  int c;
  double p;
  cout << "Enter the count of numbers to be generated: ";
  cin >> c;
  cout << "Enter the probability: ";
  cin >> p;
  cout << "Number of generated random numbers less than probability entered is " << newFunction(c, p) << endl;

  return 0;
}

 

 

I don't have a clue as to what I'm doing wrong. He uses an online textbook where he inserts his "key code" then when we run our code it compares the outputs and determines if they are the same. We are using the same compiler, and I am almost positive we are to use rand(). Please, I really need help...Thank you

  • Author
1 hour ago, Qubit said:

try replacing your old statement with this 


rand()/(double)(RAND_MAX)

 

Got same results..

  • Author
1 hour ago, Eliot said:

His test case is probably wrong.

It wasn't wrong, he just did it a random ass way.....I finally got it figured out
 

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

int newFunction(int count, double probability) {

   double random;
   int total = 0;
   for(int i = 1; i <= count; i++) {
      random = rand()/(double)(RAND_MAX + 1) + 1;
      if (random < probability) {
         cout << random << endl;
         total++;
      }
   }
   return total;
}

int main() {
  cout << "Enter integer for seed: " << endl;
  int seed;
  cin >> seed;
  srand(seed);

  int c;
  double p;
  cout << "Enter the count of numbers to be generated: " << endl;
  cin >> c;
  cout << "Enter the probability: " << endl;
  cin >> p;

  cout << "Number of generated random numbers less than probability entered is " << newFunction(c, p) << endl;

  return 0;
}

I had to change the 

random = rand()/(double)(RAND_MAX);

to

random = rand()/(double)(RAND_MAX + 1) + 1;

 

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.