https://github.com/fharchive/java.binomialcoefficients
Perform the function nCk = (n!)/k!(n-k)! Where n and k are integers and the answer is an integer
https://github.com/fharchive/java.binomialcoefficients
binomial binomial-coefficients binomialcoefficient java
Last synced: 11 months ago
JSON representation
Perform the function nCk = (n!)/k!(n-k)! Where n and k are integers and the answer is an integer
- Host: GitHub
- URL: https://github.com/fharchive/java.binomialcoefficients
- Owner: FHArchive
- License: mit
- Created: 2018-10-15T13:31:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-13T11:51:10.000Z (about 6 years ago)
- Last Synced: 2025-02-09T10:42:04.700Z (about 1 year ago)
- Topics: binomial, binomial-coefficients, binomialcoefficient, java
- Language: Java
- Size: 145 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Java.BinomialCoefficients
Perform the function nCk = (n!)/k!(n-k)! Where n and k are integers and the answer is an integer
## Download
### Clone
#### Using The Command Line
1. Press the Clone or download button in the top right
2. Copy the URL (link)
3. Open the command line and change directory to where you wish to clone to
4. Type 'git clone' followed by URL in step 2
```bash
$ git clone https://github.com/[user-name]/[repository]
```
More information can be found at
#### Using GitHub Desktop
1. Press the Clone or download button in the top right
2. Click open in desktop
3. Choose the path for where you want and click Clone
More information can be found at
### Download Zip File
1. Download this GitHub repository
2. Extract the zip archive
3. Copy/ move to the desired location
## Language information
### Built for
This program has been written in Java using Eclipse Neon Release (4.6.0) on
Windows 10
.
### Other versions
To install the latest version of eclipse go to
and follow the
instructions on the page.
## How to run
### Method 1
1. Import the project directory (containing the bin and src directories)
- Click File> Import
- Select Projects from Folder or Archive, click next
- Select Directory and navigate to the project directory (select ok)
- Ensure Search for nested projects is ticked
- Click Finish
2. Run the program with Ctrl + F11
### Method 2
1. Create a new project
2. Copy the .java file(s) into the project
3. Run the program with Ctrl + F11
## Licence
MIT License
Copyright (c) FredHappyface
(See the [LICENSE](/LICENSE.md) for more information.)