You will write a program that displays tomorrow's date.
DateTime objects have more methods available, for example, Date arithmetic.
using System; class Program// w ww.j a v a 2 s . com { static void Main(string[] args) { // Today's date DateTime today = DateTime.Today; // Tomorrow's date DateTime tomorrow = today.AddDays(1); // Output Console.WriteLine("Today is " + today.ToShortDateString() + "."); Console.WriteLine("I will start learning on " + tomorrow.ToShortDateString() + "."); } }