Random name generator
Sign in to test your solution.
// Random name generator program
using System;
class Submission
{
// -------------------------
// Globals
// -------------------------
static Random random_generator = new Random();
// -------------------------
// Subprograms
// -------------------------
// Function to return a random name
static string generate_name()
{
}
// -------------------------
// Main program
// -------------------------
public static void Main(string[] args)
{
Console.WriteLine(generate_name());
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.