Q:

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

0

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

All Answers

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

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:

Enter days:

367

Years : 1

weeks : 0

Days : 2

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

total answers (1)

<< C# Program to Calculate Area of Rectangle...