0
How can i display time from a number of minutes
ex. 362 minutes into 6:02 i canât seem to get the 0 in the tens digit so i canât use %60 like some people suggest.
2 Answers
- 1
class Time
{
private:
int seconds;
int hh,mm,ss;
public:
void getTime(void);
void convertIntoSeconds(void);
void displayTime(void);
};