Write a program that reads in hours, minutes and seconds as input, and outputs the time in seconds only. Ex: If the input is: 1 6 40 where 1 is the number of hours, 6 is the number of minutes, and 40 is the number of seconds, the output is: Seconds: 4000
Operations
In mathematics and computer science, an operation is an event that is carried out to satisfy a given task. Basic operations of a computer system are input, processing, output, storage, and control.
Basic Operators
An operator is a symbol that indicates an operation to be performed. We are familiar with operators in mathematics; operators used in computer programming are—in many ways—similar to mathematical operators.
Division Operator
We all learnt about division—and the division operator—in school. You probably know of both these symbols as representing division:
Modulus Operator
Modulus can be represented either as (mod or modulo) in computing operation. Modulus comes under arithmetic operations. Any number or variable which produces absolute value is modulus functionality. Magnitude of any function is totally changed by modulo operator as it changes even negative value to positive.
Operators
In the realm of programming, operators refer to the symbols that perform some function. They are tasked with instructing the compiler on the type of action that needs to be performed on the values passed as operands. Operators can be used in mathematical formulas and equations. In programming languages like Python, C, and Java, a variety of operators are defined.
24.1 LAB: Convert to seconds
Write a
Ex: If the input is:
1 6 40where 1 is the number of hours, 6 is the number of minutes, and 40 is the number of seconds, the output is:
Seconds: 4000![24.1 LAB: Convert to seconds
Write a program that reads in hours, minutes and seconds as input, and outputs the time in seconds only.
Ex: If the input is:
1 6 40
where 1 is the number of hours, 6 is the number of minutes, and 40 is the number of seconds, the output is:
Seconds: 4000
438004.2719970.qx3zqy7
LAB
ACTIVITY
1 import java.util.Scanner;
3 public class LabProgram {
5
6
7
8
9
10
11
12
13 }
14
24.1.1: LAB: Convert to seconds
public static void main(String[] args) {
int seconds;
int minutes;
int hours;
}
/* Type your code here. */
Develop mode
Submit mode
LabProgram.java
0/10
Load default template...
Run your program as often as you'd like, before submitting for grading. Below, type any needed
input values in the first box, then click Run program and observe the program's output in the
second box.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F9218d326-0c5a-4a23-bab2-0b26505c2804%2Fb9c1993b-e22b-4041-9a9b-ef29b67e691a%2Fvztojs4q_processed.png&w=3840&q=75)

Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images









