Seconds in a day
Sign in to test your solution.
// Seconds in a day program
using System;
class Submission
{
// -------------------------
// Subprograms
// -------------------------
static int seconds_to_hours(int seconds)
{
}
static int seconds_to_minutes(int seconds)
{
}
static int seconds_remaining(int seconds)
{
}
// -------------------------
// Main program
// -------------------------
public static void Main(string[] args)
{
Console.WriteLine($"{hours} hours {minutes} minutes {seconds} seconds");
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.