INSPIRATION:

Mathematics is a skill that valued in almost every career. However, as children, many are demotivated to learn math because of monotonous teaching methods as well as dull practice problems on homework. We aspire to bring that joy aspect that children find in games and other fun activities into the world of mathematics. This will be accomplished through our website tailored towards the 3-12 year old demographic.

PURPOSE:

Hone the skills of children and more importantly develop a love and passion for math from a young age.

HOW:

This website was created using HTML

CHALLENGES:

After thoroughly writing pseudo code for this project we found some difficulty creating the website. Although we were unable to fix this issue by the end of the hackathon we still attempted our very best and hope to continue working on this project so we may, in the future, allow the website to come to fruition.

ACCOMPLISHMENTS:

We formatted a logo, wrote out the general pseudo code, created a plan, and found the designs we wanted to use for the characters.

WHAT I LEARNED:

How to use HTML, How to design a user interface website, How to tailor a website for certain demographics

WHATS NEXT:

Build the website

# Python program to check if the input number is prime or not

# take input from the user
num = int(input("Enter a number: "))

# prime numbers are greater than 1
if num > 1:
   # check for factors
   for i in range(2,num):
       if (num % i) == 0:
           print(num,"is not a prime number")
           print(i,"times",num//i,"is",num)
           break
   else:
       print(num,"is a prime number")

# if input number is less than
# or equal to 1, it is not prime
else:
   print(num,"is not a prime number")

Built With

Share this project:

Updates