Getting the Windows Calculator to do time additions is a little tricky and probably a lot more trouble than it’s worth, considering how easy it is to get the same effect from programs like the one named earlier in this thread.
Anyway, the calculator will recognize the degrees-minutes-second (DMS) format, but the syntax is a little weird. There are no symbols for minutes or seconds, so you have to treat the whole number as one continuous string. For example, if I want to represent 3 degrees, 42 minutes and 15 seconds, I’d input this:
3.4215
If I want to input a the length of a song with a running time of 4 minutes and 53 seconds, I’d input this:
0.0453
One of the many problems with this scheme is that the calculator has no intrinsic way of knowing that you’ve just input a DMS number. So if you attempt to add 4 minutes and 53 seconds to, e.g., 2 minutes and 12 seconds by entering this:
0.0453 + 0.0212 =
Then you’ll get the decimal sum of those numbers. The way to get around this snag is to enter the times you want to add in DMS format (as above), convert each addend from DMS to decimal, add the numbers all up, and then convert back from decimal to DMS.
To do this in the Windows calculator, you have to enter the first number, press Inverse + DMS (or press the keyboard shortcut i, then m), press plus, enter the second number, press Inverse + DMS, and so on, then press equals, then press DMS (or the keyboard shortcut m).
If you follow these instructions, you should get that
0.0453 + 0.0212 = 0.0705, or 7 minutes and 12 seconds, which is the correct answer.
There are definitely better ways to do the time-adding operation, but it can be accomplished with the Windows Calculator.
can only add decimal numbers. If you put two numbers into the calculator and add them, it will do so using the decimal system, not the degrees-minutes-seconds system.