wes d2a2ba9e15 first commit 4 jaren geleden
..
README.md d2a2ba9e15 first commit 4 jaren geleden
code.cpp d2a2ba9e15 first commit 4 jaren geleden
unitTest.cpp d2a2ba9e15 first commit 4 jaren geleden

README.md

Convert Minutes into Seconds

by Matt tags: language_fundamentals, math

Summary

Write a function that takes an integer minutes and converts it to seconds. Examples convert(5) ➞ 300 convert(3) ➞ 180 convert(2) ➞ 120 Notes Don't forget to return the result. If you get stuck on a challenge, find help in the Resources tab. If you're really stuck, unlock solutions in the Solutions tab.

Instructions

Write a function that takes an integer minutes and converts it to seconds.

Examples

convert(5) ➞ 300

convert(3) ➞ 180

convert(2) ➞ 120

Notes

  • Don't forget to return the result.
  • If you get stuck on a challenge, find help in the Resources tab.
  • If you're really stuck, unlock solutions in the Solutions tab.