Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

โปรแกรม C# สร้างตัวพิมพ์เล็กสุ่ม


ขั้นแรก ตั้งค่าคลาสสุ่ม -

Random random = new Random();

ตั้งค่าช่วงภายใต้เมธอด Next() ซึ่งจะแสดงตัวอักษรระหว่าง 0 ถึง 26

int a = random.Next(0, 26);

นี่คือรหัสที่สมบูรณ์ -

ตัวอย่าง

using System;
using System.IO;
using System.Linq;
class Demo {
   static void Main() {
      Random random = new Random();
      // random lowercase letter
      int a = random.Next(0, 26);
      char ch = (char)('a' + a);
      Console.WriteLine(ch);
   }
}

ผลลัพธ์

t