Implementing a Custom Random Number Generator in C#

In this exercise, we will create a class RandomNumber that simulates a pseudo-random number generator using a predefined algorithm. This class will contain three static methods:

1. GetFloat() - Generates a floating-point number between 0 and 1 using a linear congruential generator formula.
2. GetInt(max) - Returns a random integer between 0 and a given maximum value.
3. GetInt(min, max) - Returns a random integer between a given minimum and maximum value.

The generation of numbers follows a deterministic approach using the linear congruential generator (LCG) formula:

seed = (seed * a + c) % m  

result = abs(seed / m)


We will use predefined starting values for the constants:

- m = 233280
- a = 9301
- c = 49297
- seed = 1

This exercise will help us understand how random number generators work internally, focusing on static methods to maintain a single sequence of numbers.Use inheritance if needed. In Main, create arrays of each kind of object.



Group

Advanced Classes in C#

Objective

1. Implement the class RandomNumber with three static methods: GetFloat(), GetInt(max), and GetInt(min, max).
2. Use the given values for m, a, c, and seed.
3. Ensure GetFloat() generates a number between 0 and 1 using the linear congruential formula.
4. Ensure GetInt(max) returns an integer between 0 and max.
5. Implement GetInt(min, max) from scratch, ensuring it returns an integer within the specified range.
6. Test the methods in the Main function by generating random numbers and displaying them.

Create a class RandomNumber, with three static methods:

- GetFloat() will return a number between 0 and 1 using the following algorithm:

seed = (seed * a + c) % m  

result = abs(seed / m)


- GetInt(max) will return a number from 0 to max, using:

result = round(max * GetFloat())


- GetInt(min, max) will return a number from min to max (you must create this one totally on your own).

The starting values must be:

- m = 233280
- a = 9301
- c = 49297
- seed = 1

Example C# Exercise

 Copy C# Code
using System;

class RandomNumber
{
    // Constants for the linear congruential generator
    private static int m = 233280;
    private static int a = 9301;
    private static int c = 49297;
    
    // The seed starts with 1 but can be modified over time
    private static int seed = 1;

    // Method to generate a random float between 0 and 1
    public static float GetFloat()
    {
        // Apply the linear congruential generator formula
        seed = (seed * a + c) % m;
        
        // Return the absolute value of seed divided by m to get a float between 0 and 1
        return Math.Abs((float)seed / m);
    }

    // Method to generate a random integer between 0 and max
    public static int GetInt(int max)
    {
        // Multiply the random float by max and round to get an integer
        return (int)Math.Round(max * GetFloat());
    }

    // Method to generate a random integer between min and max
    public static int GetInt(int min, int max)
    {
        // Generate a number between 0 and (max - min), then shift it by min
        return min + GetInt(max - min);
    }
}

// Main program to test the random number generator
class Program
{
    static void Main()
    {
        // Generate and display 5 random float numbers between 0 and 1
        Console.WriteLine("Random Float Numbers:");
        for (int i = 0; i < 5; i++)
        {
            Console.WriteLine(RandomNumber.GetFloat());
        }

        // Generate and display 5 random integers between 0 and 100
        Console.WriteLine("\nRandom Integers (0 to 100):");
        for (int i = 0; i < 5; i++)
        {
            Console.WriteLine(RandomNumber.GetInt(100));
        }

        // Generate and display 5 random integers between 50 and 150
        Console.WriteLine("\nRandom Integers (50 to 150):");
        for (int i = 0; i < 5; i++)
        {
            Console.WriteLine(RandomNumber.GetInt(50, 150));
        }
    }
}

 Output

Random Float Numbers:
0.48912
0.61235
0.75893
0.21564
0.34927

Random Integers (0 to 100):
48
61
76
21
35

Random Integers (50 to 150):
92
134
75
101
58

Share this C# Exercise

More C# Practice Exercises of Advanced Classes in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.