Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Data Type Exercises: Takes the user to input the minutes, and print the number of years and days for the minutes

Java Data Type: Exercise-4 with Solution

Write a Java program to convert minutes into a number of years and days.

Test Data
Input the number of minutes: 3456789

Java datatype Exercises: Print the number of years and days from minutes

Sample Solution:

Java Code:

import java.util.Scanner;
public class Exercise4 {

    public static void main(String[] Strings) {


        double minutesInYear = 60 * 24 * 365;

        Scanner input = new Scanner(System.in);

        System.out.print("Input the number of minutes: ");

        double min = input.nextDouble();

        long years = (long) (min / minutesInYear);
        int days = (int) (min / 60 / 24) % 365;

        System.out.println((int) min + " minutes is approximately " + years + " years and " + days + " days");
    }
}

Sample Output:

Input the number of minutes: 3456789                                                                          
3456789 minutes is approximately 6 years and 210 days

Flowchart:

Flowchart: Java Data Type Exercises - Print the number of years and days from minutes

Java Code Editor :

Improve this sample solution and post your code through Disqus

Previous: Write a Java program that reads an integer between 0 and 1000 and adds all the digits in the integer. Input an integer between 0 and 1000.
Next: Write a Java program that prints the current time in GMT.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe