import java.util.Scanner; public class Time { static Scanner keyboard = new Scanner(System.in); public static void main(String [] args) { int totalMinutes; int hours; int minutes; System.out.println("How many minutes have passed today?"); // 1) Read the number of minutes from the keyboard, and store the // input in the variable "totalMinutes". // 2) Compute the number of full hours that have passed, and store // the result into the variable "hours". // 3) Compute the number of minutes remaining in the current hour, // and store the result into the variable "minutes". // 4) Print the current time. The format should be hour:minute // (e.g., 9:45). Use 24-hour time (i.e., 15:30 for 3:30pm). } }