Skip to main content

Posts

Showing posts with the label Class 12th Chapter :- 7 Write a JAVA program to convert days into years

ads1

JAVA PROGRAM || Write a JAVA program to convert days into years, weeks and days.

                                                                                       Write a Java  program to convert days into years, weeks and days.   (hint)  year = days/365 week = (day % 365)/7) days = days-(year*365)+(weeks*7)) Static :- class YWD {     public static void main(String args[])     {         int day=500;         int year,week,days;         year = (day/365);         week = (day % 365)/7;         days = day-((year*365)+(week*7));         System.out.println("The number of year :- "+year); ...

ads2