Question: When you execute the CompareLoopTimes program shown in Figure 6-29, you will occasionally see a negative number output when the nanoseconds values retrieved fall in

When you execute the CompareLoopTimes program shown in Figure 6-29, you will occasionally see a negative number output when the nanoseconds values retrieved fall in different seconds. Modify the program to fix this problem, and save the file as CompareLoopTimes3.java. (Hint: It might take hundreds or thousands of executions for you to “catch” the program near the end of a second in order to test your modifications. For testing purposes, you can assign values to the start and stop times instead of retrieving them from the LocalDateTime class.)

import java.time.*; public class CompareloopTimes { public static void main (String[] args) { int startTime, endTime; final int REPEAT = 100_000; final int FACTOR = 1_000_000; LocalDateTime now; now = Loca1DateTime.now(); startTime = now.getNano(%; for (int x = 0; x = 0; --y); now = LocalDateTime.now(); endTime = now.getNano ();

import java.time.*; public class CompareloopTimes { public static void main (String[] args) { int startTime, endTime; final int REPEAT = 100_000; final int FACTOR = 1_000_000; LocalDateTime now; now = Loca1DateTime.now(); startTime = now.getNano(%; for (int x = 0; x = 0; --y); now = LocalDateTime.now(); endTime = now.getNano (); System.out.println("Time for loops ending with 0: ((endTime - startTime) / FACTOR) + " milliseconds"); } } Figure 6-29 The CompareLoopTimes application

Step by Step Solution

3.39 Rating (168 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

import javatime public class CompareLoopTimes3 public static void mainString args int star... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Java Programming 8th Questions!