How to convert days to minutes using C#

1 Answer

0 votes
using System;

class Program
{
    static int daysToMinutes(int days) {
        return days * 24 * 60;
    }
    static void Main() {
        Console.WriteLine(daysToMinutes(1)); 
        Console.WriteLine(daysToMinutes(2)); 
        Console.WriteLine(daysToMinutes(10)); 
    }
}


   
   
   
   
/*
run:
   
1440
2880
14400
   
*/

 



answered Mar 1, 2022 by avibootz

Related questions

...