We've moved away from repl.it for coding exercises. Check out the new exercises on Coding Rooms with automated submissions.
Login to your Udemy course and head over to the link below to get the sign up link:
Write a program that adds the digits in a 2 digit number. e.g. if the input was 35, then the output should be 3 + 5 = 8
Warning. Do not change the code on lines 1-3. Your program should work for different inputs. e.g. any two-digit number.
39
3 + 9 = 12
12
e.g. When you hit run, this is what should happen:
- Try to find out the data type of two_digit_number.
- Think about what you learnt about subscripting.
- Think about type conversion.
Before checking the solution, try copy-pasting your code into this repl:
https://repl.it/@appbrewery/day-2-1-test-your-code
This repl includes my testing code that will check if your code meets this assignment's objectives.