/DivisibilityTestPrograms

Programs that can check whether the input is divisible by a certain number.

Primary LanguagePython

DivisibilityTestPrograms

Programs that can check whether the input is divisible by a certain number without using MODULO Operator.

Idea

  • To explore the Divisibility rules for different numbers!!

Contributing to this project

  • There are folders for each language
  • Add your program in the related folder as language/TestForNumber.extension eg:java/TestFor3.java
  • If the folder for your language is not there then create one.

Getting started

  • Fork this repository (Click the Fork button in the top right of this page, click your Profile Image)
  • Clone your fork down to your local machine
git clone https://github.com/your-username/DivisibilityTestPrograms.git
  • Create a branch
git checkout -b branch-name
  • Make your changes(Choose from the issues)
  • Commit and push
git add .
git commit -m 'Commit message'
git push origin branch-name
  • Create a new pull request from your forked repository (Click the New Pull Request button located at the top of your repo)