Q:

Write a program in C# Sharp to find the day for a particular date

0

Write a program in C# Sharp to find the day for a particular date. 
Test Data:
Input the Day : 16
Input the Month : 06
Input the Year : 2016
Expected Output :

The formatted Date is : 16/06/2016                                     
 The day for the date is : Thursday

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

using System;

class dttimeex57
{
    static void Main()
    {
        int yr,mn,dt;
        
    Console.Write("\n\n Find the day for a given date :\n");
	Console.Write("------------------------------------\n");        
        
	Console.Write(" Input the Day : ");
    dt = Convert.ToInt32(Console.ReadLine());	
    Console.Write(" Input the Month : ");
    mn = Convert.ToInt32(Console.ReadLine());	
    Console.Write(" Input the Year : ");
    yr = Convert.ToInt32(Console.ReadLine());		
	DateTime d = new DateTime(yr, mn, dt);
	Console.WriteLine(" The formatted Date is : {0}",d.ToString("dd/MM/yyyy"));	
	DateTime pp;
    pp=DayOfWeek(d);
	Console.WriteLine(" The day for the date is : {0}\n ",pp.DayOfWeek);
    }
    public static DateTime DayOfWeek(DateTime dt)
    {
        DateTime ss= new DateTime(dt.Year, dt.Month, dt.Day);
        return ss;
    }    
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now