Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Using JAVA I'm trying to display the current time but it says theres an error if some one could look at this and show me

Using JAVA

I'm trying to display the current time but it says theres an error if some one could look at this and show me where I'm going wrong

// Written by: Will Van Velsor // Date 1/26/2020

public class ShowCurrentTime { public static void main(String[] args) { // Obtain the total milliseconda since midnight, Jan 1, 1970 long totalMilliseconds = System.currentTimeMillis(); // Obtain the total seconds since midnight, Jan 1, 1970 long seconds = totalTimeMilliseconds / 1000; //compute the current second in minute in the hour long currentSecond = totalSeconds % 60; // obtain the total minutes long totalMinutes = totalSeconds / 60; // compute the current minute in the hour long currentMinute = totalMinutes % 60; // obtain the total hours long totalHours = totalMinutes / 60; //compute the current hour long currentHour = totalHours % 24; //Display results System.out.println("Current time is " + currentHour + ":" + currentMinute + ":" + currentSecond + " GMT "; } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle Database 19c DBA By Examples Installation And Administration

Authors: Ravinder Gupta

1st Edition

B09FC7TQJ6, 979-8469226970

More Books

Students also viewed these Databases questions

Question

4. Identify the stage of the road of trials in The Wizard of Oz.

Answered: 1 week ago

Question

What is the use of bootstrap program?

Answered: 1 week ago

Question

What is a process and process table?

Answered: 1 week ago

Question

What is Industrial Economics and Theory of Firm?

Answered: 1 week ago

Question

3. Identify cultural universals in nonverbal communication.

Answered: 1 week ago