using System;
using System.Globalization;
using System.Threading;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
DateTime now = DateTime.Now;
Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US");
for (int i = 0; i < 7; i++) {
Console.WriteLine(now.ToString("ddd"));
now = now.AddDays(1);
}
}
}
}
/*
run:
Tue
Wed
Thu
Fri
Sat
Sun
Mon
*/