public static void Main()
Console.WriteLine("Hello! This is your school schedule");
public static void Prompt()
string promptday = "Please enter a day of the week";
string prompttimetable = "Please enter 'yes' if you want to see the timetable for your classes or enter 'no' if you want to hide the timetable";
public static void SchoolDays(string promptday, string prompttimetable)
string dayofweek = Console.ReadLine();
if (dayofweek == "Monday")
Console.WriteLine("Schedule for today: 1.Philosophy; 2.Philosophy; 3.IT; 4.IT; 5.English; 6.Math;");
if (dayofweek == "Tuesday")
Console.WriteLine("Schedule for today: 1.Informatic; 2.English; 3.English; 4.IT; 5.Deutsch; 6.English; 7.PE; 8.PE;");
if (dayofweek == "Wednesday")
Console.WriteLine("Schedule for today: 1.English; 2.PE; 3.Math; 4.Informatic; 5.Philosophy; 6.Philosophy; 7.Informatic;");
if (dayofweek == "Thursday")
Console.WriteLine("Schedule for today: 1.Bulgarian; 2.Bulgarian; 3.English; 4.IT; 5.IT; 6.Philosophy; 7.Philosophy;");
if (dayofweek == "Friday")
Console.WriteLine("Schedule for today: 1.Bulgarian; 2.PE; 3.Deutsch; 4.Informatic; 5.Informatic; 6.English;");
Console.WriteLine("You don't have school on this day :)");
Console.WriteLine(prompttimetable);
string timetable = Console.ReadLine();
Console.WriteLine("This is the timetable for every class: 1. 8:00-8:40; 2. 8:50-9:30; 3. 9:55-10:35; 4. 10:45-11:25; 5. 11:35-12:15; 6. 12:25-13:05 7. 13:15-13:55;");
Console.WriteLine("Timetable hidden");