C# Program to convert days to years, weeks and days

Introduction

C# Program to convert days to years, weeks and days. This program is compiled and tested on a Visual Studio 2012..

using System;

namespace TechStudyCSharp
{
    class Program
    {
        static void Main(string[] args)
        {
            
            int days, years, weeks;
            Console.WriteLine("Enter days:");
            days = Convert.ToInt32( Console.ReadLine());

            years = (days / 365);
            weeks = (days % 365) / 7;
            days = days - ((years * 365) + (weeks * 7));

            Console.WriteLine("Years : "+ years);
            Console.WriteLine("weeks : "+ weeks);
            Console.WriteLine("Days : "+ days);
                    
            Console.ReadKey();
        }
    }
}

Result

C# Program to convert days to years, weeks and days
C# Program to convert days to years, weeks and days

Leave a Comment