C# Program to convert days to years, weeks and days. This program is compiled and tested on a Visual Studio 2012..
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 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(); } } } |
19 March 2019 2252 Written By: Rohit Mhatre
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap