Write a program in C# Sharp to get the first day of the current year and first of a year against a given date

  • برمجة سي شارب
  • برمجة

Write a program in C# Sharp to get the first day of the current year and first of a year against a given date.

Test Data:
Input the Day : 17
Input the Month : 09
Input the Year : 2016
Expected Output :

The formatted Date is : 12/12/2012
 The First day of the year 2012 is : 01/01/2012

الأجوبة

using System;

class dttimeex46
{
    static void Main()
    {
	int dt,mn,yr;
    Console.Write("\n\n Find  the first day of a year against a date :\n");
	Console.Write("---------------------------------------------------\n");	
	Console.WriteLine(" The First day of the current year is : {0} \n", FirstDayOfYear().ToString("dd/MM/yyyy"));
    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 nd=FirstDayOfYear(d);
	Console.WriteLine(" The First day of the year {0} is : {1}\n", yr,nd.ToString("dd/MM/yyyy"));
    }
    static DateTime FirstDayOfYear()
    {
	return FirstDayOfYear(DateTime.Today);
    }
    static DateTime FirstDayOfYear(DateTime y)
    {
	return new DateTime(y.Year, 1, 1);
    }
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...