Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Malcolm

Administrator
Administrator
Staff Team
Code Plus
Company Plus
Hello Coders,

Using any language, create a function to convert minutes into seconds. Very simple.

Send @Master Yoda your results!

Good Luck everyone!
 
@Master Yoda
C#:
            int minutues = 60;
            int answer = minutues * 60;
            Console.WriteLine(minutues);
here it is in C#
 
Back
Top Bottom