User:HelloThereMeManly/sandbox
Hi. I'm HelloThereMeManly. Lets do some coding!
Debug.Log ("Hello there.");
Now, let's get harder. 🤣🤣
int num = random.Next(); The following code returns a random number less than 1000. int num = random.Next(1000); The following code returns a random number between the min and the max range. // Generate a random number between two numbers public int RandomNumber(int min, int max) {
Random random = new Random(); return random.Next(min, max);
}
// Generate a random string with a given size public string RandomString(int size, bool lowerCase) {
StringBuilder builder = new StringBuilder();
Random random = new Random();
char ch;
for (int i = 0; i < size; i++)
{
ch = Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65)));
builder.Append(ch);
}
if (lowerCase)
return builder.ToString().ToLower();
return builder.ToString();
}
// Generate a random password public string RandomPassword() {
StringBuilder builder = new StringBuilder(); builder.Append(RandomString(4, true)); builder.Append(RandomNumber(1000, 9999)); builder.Append(RandomString(2, false)); return builder.ToString();
}
using System.Text;
class RandomNumberSample {
static void Main(string[] args)
{
RandomGenerator generator = new RandomGenerator();
int rand = generator.RandomNumber(5, 100);
Console.WriteLine($"Random number between 5 and 100 is {rand}");
string str = generator.RandomString(10, false);
Console.WriteLine($"Random string of 10 chars is {str}");
string pass = generator.RandomPassword();
Console.WriteLine($"Random string of 6 chars is {pass}");
Console.ReadKey();
}
}
public class RandomGenerator {
// Generate a random number between two numbers
public int RandomNumber(int min, int max)
{
Random random = new Random();
return random.Next(min, max);
}
// Generate a random string with a given size
public string RandomString(int size, bool lowerCase)
{
StringBuilder builder = new StringBuilder();
Random random = new Random();
char ch;
for (int i = 0; i < size; i++)
{
ch = Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65)));
builder.Append(ch);
}
if (lowerCase)
return builder.ToString().ToLower();
return builder.ToString();
}
// Generate a random password
public string RandomPassword()
{
StringBuilder builder = new StringBuilder();
builder.Append(RandomString(4, true));
builder.Append(RandomNumber(1000, 9999));
builder.Append(RandomString(2, false));
return builder.ToString();
}
}
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.