Practice Exercises C# Sharp - Learn to program with performing exercises C# Sharp

Practice Exercises C# Sharp

Learn to program with performing exercises C# Sharp


Random number - Practice Exercises C# Sharp


Lesson 7:

More on classes


Exercise 7.8:

Random number


Objetive:

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;


Source Code:


using System;
namespace Random
{
    class RandomNumber
    {
        private static int m = 233280;
        private static int a = 9301;
        private static int c = 49297;
        private static int seed = 1;

        public static float GetFloat()
        {
            seed = (seed * a + c) % m;
            return Math.Abs(seed / m);
        }

        public static int GetInt(int max)
        {
            return 0;
        }

        public static int GetInt(int min, int max)
        {
            return 0;
        }
    }
}
Exercisey 7.8




Privacy Policy:



Google uses associated advertising companies to serve ads when it visits our website. These companies may use the information they obtain from your visits to this and other websites (not including your name, address, email address, or phone number) to provide you with announcements about products and services that interest you. If you would like to learn more about this practice and know your options to prevent these companies from using this information. Click in... Privacy and Terms of Google.

Cookies

This site uses Google cookies to provide its services, to personalize advertisements and to analyze traffic. Google receives information about your use of this website. More information in... Privacy and Terms of Google.