Cookies
Sign in to test your solution.
// Cookies program
using System;
using System.IO;
class Submission
{
// -------------------------
// Subprograms
// -------------------------
static string read_cookie()
{
}
static void write_cookie(string theme)
{
}
static void change_theme(string theme)
{
}
// -------------------------
// Main program
// -------------------------
public static void Main(string[] args)
{
string theme = read_cookie();
Console.WriteLine($"The current {theme}");
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.