fork(19) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Console.WriteLine(DateTime.Now.ToString("dd/mm/yyyy"));
  8. Console.WriteLine(DateTime.Now.ToString("dd/MM/yyyy"));
  9. }
  10. }
Success #stdin #stdout 0.04s 33872KB
stdin
Standard input is empty
stdout
08/39/2013
08/04/2013