Computer Science, asked by Aditi3149, 1 month ago

WAP in java to input days from user and convert it into years, months and remaining days.​

Answers

Answered by madhav674
0

Answer:

hshsbdhhshbsjdjfnjdhrhjkdjhtrhjeijjuhj

Answered by Shivu516
0

Answer:

import java.util.Scanner;

public class DaysConverter {

   public static void main (String [] args) {

       Scanner sc = new Scanner(System.in);

       //Taking input from the user

       System.out.println("Here, a month is considered to have 30 day");

       System.out.print("Enter days: ");

       int days = sc.nextInt();

       

       //Most important part comes here

       int years = days/365;

       int months = (days % 365) / 30;

       int Days = (days % 365) % 30;

                       

       //Printing the output

       System.out.println("Year/s : " + years);

       System.out.println("Month/s : " + months);

       System.out.println("Day/s : " + Days);

   }

}

Output:

Here, a month is considered to have 30 days

Enter days: 1234

Year/s : 3

Month/s : 4

Day/s : 19

Similar questions