Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.16 KB

README.md

File metadata and controls

34 lines (24 loc) · 1.16 KB

Apprentice-Intro-Languages

Before we start.

Consider follow the clean code principles. It's not mandatory, but remember that someone else might read your code! :D

What do i need?

  • Fork this repository
  • Clone the repository you've just forked
  • Create a folder with the first letter of your name and your last name eg: jresendiz
  • Create a three folders inside, consider the next names: java,javascript,python for each folder.
  • Install java (needed)
  • Install python (needed)
  • Install node (desired, you can use the browser too!)

What am I going to do?

You're about to create the most simple calculator in three different languages. The calculator will consist on the next operations.

  • Sum between two numbers (a + b)
  • Sum all the numbers in a list ([1,2,3] = 6)
  • Substract two numbers (a - b)
  • Substract to the first element of the list, the remaining ones ([5,2,1] = 5 - 2 - 1 = 2)
  • Product of two numbers (a * b)
  • Division between two numbers (a / b)

The user will use the command line to introduce the values desired by the calculator. The calculator must be done in the three languages.

At the end of the exercise, create a pull request.

Happy coding!