How to resolve the algorithm Convert seconds to compound duration step by step in the Run BASIC programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Convert seconds to compound duration step by step in the Run BASIC programming language

Table of Contents

Problem Statement

Write a function or program which: This is detailed below (e.g., "2 hr, 59 sec").

Demonstrate that it passes the following three test-cases: Test CasesDetailsThe following five units should be used: However, only include quantities with non-zero values in the output (e.g., return "1 d" and not "0 wk, 1 d, 0 hr, 0 min, 0 sec"). Give larger units precedence over smaller ones as much as possible (e.g., return 2 min, 10 sec and not 1 min, 70 sec or 130 sec) Mimic the formatting shown in the test-cases (quantities sorted from largest unit to smallest and separated by comma+space; value and unit of each quantity separated by space).

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Convert seconds to compound duration step by step in the Run BASIC programming language

Source code in the run programming language

sec = 6000005
week	= int(sec/60/60/24/7)
day	= int(sec/60/60/24) mod 7
hour	= int(sec/60/60) mod 24
minute	= int(sec/60) mod 60
second	= sec mod 60

print sec;" seconds is "; 
if week > 0 then print week;" weeks ";
if day > 0 then print day;" days "; 
if hour > 0 then print hour;" hours ";
if minute > 0 then print minute;" minutes ";
if second > 0 then print second;" seconds"

  

You may also check:How to resolve the algorithm Digital root step by step in the F# programming language
You may also check:How to resolve the algorithm Priority queue step by step in the CLU programming language
You may also check:How to resolve the algorithm Rot-13 step by step in the C# programming language
You may also check:How to resolve the algorithm Text processing/1 step by step in the Lua programming language
You may also check:How to resolve the algorithm Ordered words step by step in the C programming language