Hi,
I wonder if C++ has any inbuilt function where you can convert Minutes to time like this example:
70 minutes in time would be: [B]01:10[/B]
It doesn't have an inbuilt function (but I am sure they are in libraries)
BUT surely it is this
int totalMin=890;
int min=total % 60 ;
int hour = (total / 60) % 24;
// etc
not exactly difficult to put into a function.
(A fraction of care is needed if using double values but the same principle.)
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.