I think the answer would be "superscript"
Answer:
one inch=25.4
12 meters=13.12
10 quarts=9.46
12 milliliters=0.0004
400 pounds= 181 kg
25 meters/second=82
68F=20C
Explanation:
heres the full ones
one inch=25.4
12 meters=13.1234 yards
10 quarts=9.46353
12 milliliters=0.000405768
400 pounds=181.437
25m/s=82.021f/s
68f=20C
Answer:
- def ending_time(hour, minutes, seconds, work_time):
- if((seconds + work_time) // 60 > 0):
- minutes = minutes + (seconds + work_time) // 60
- seconds = (seconds + work_time) % 60
-
- if(minutes // 60 > 0):
- hour = hour + (minutes // 60)
- minutes = minutes % 60
- else:
- seconds = seconds + work_time
-
- return str(hour) + ":" + str(minutes) + ":" + str(seconds)
-
- print(ending_time(2,30,59, 12000))
Explanation:
The solution code is written in Python 3.
Firstly create a function ending_time that takes the four required input parameters.
Next, create an if statement to check if the numerator of (seconds + work_times) divided by 60 is over zero. If so, increment the minute and reassign the remainder of the seconds to the variable (Line 2-4).
Next, create another if statement again to check if the numerator of (current minutes) divided by 60 is over zero, if so increment the hour and reassign the remainder of the minutes to the variable (Line 6-8)
Otherwise, just simply add the work_time to the current seconds
At last return the time output string (Line 12).
Rounding Numbers
Say you wanted to round the number 838.274. Depending on which place value you'll round to, the final result will vary. Rounding 838.274:
Rounding to the nearest hundred is 800
Rounding to the nearest ten is 840
Rounding to the nearest one is 838
Rounding to the nearest tenth is 838.3
Rounding to the nearest hundredth is 838.27