Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome.
irst off, thank you for considering contributing to this project!

## How to Contribute

### Reporting Bugs
* Use the GitHub **Issues** tab to report bugs.
* Describe the bug clearly and include steps to reproduce it.

### Suggesting Enhancements
* Open an **Issue** with the tag "enhancement" to discuss new features.

### Pull Requests
1. **Fork** the repository.
2. **Create a branch** for your feature or fix (`git checkout -b feature/name`).
3. **Commit** your changes with clear messages.
4. **Push** to your fork and submit a **Pull Request**.

## Contribution Standards
* Ensure your code follows the existing style of the repository.
* Provide documentation for any new features added.
* Be respectful and follow our Code of Conduct.

Thank you for your help in improving automated grading!
25 changes: 24 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@
Apache License
# Contributing to "Auto Inters Calculator

We love contributions! Here is how you can help:

## How to Contribute
1. **Fork the Repository:** Create your own copy of the project.
2. **Clone Locally:** `git clone https://github.com/your-username/Srudents-Auto-Grading.git`
3. **Create a Branch:** `git checkout -b feature/your-feature-name`
4. **Make Changes:** Ensure your code follows the project's style.
5. **Commit Changes:** `git commit -m "Brief description of changes"`
6. **Push to GitHub:** `git push origin feature/your-feature-name`
7. **Submit a Pull Request:** Explain your changes and wait for review.

## Reporting Issues
If you find a bug, please open an **Issue** in the GitHub repository and include:
* A clear description of the problem.
* Steps to reproduce the error.
* Any relevant logs or screenshots.

Thank you for helping improve automated grding!


Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

Expand Down Expand Up @@ -199,3 +221,4 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

26 changes: 16 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
# Part 1 - GitHub UI
# github-final-project

## Simple Interest Calculator

A calculator that calculates simple interest given principal, annual rate of interest and time period in years.
## Purpose
The purpose of this project is to provide an automated system for Interest Calculation basing on the amount anad duration. It aims to streamline the evaluation process by providing consistent, objective, and timely feedback on submitted code or coursework.

## Features
* **Automated Scoring:** Evaluates submissions based on predefined criteria.
* **Consistency:** Ensures fair grading across all student submissions.
* **Scalability:** Capable of handling large batches of student data efficiently.

## Getting Started
1. Clone the repository to your local machine.
2. Ensure all dependencies are installed.
3. Configure the grading scripts with your specific rubrics.

## License
This project is licensed to Capt. L K TauhidurRahman (Retd), under black-shadow project. under the Apache License 2.0.

```
Input:
p, principal amount
t, time period in years
r, annual rate of interest
Output
simple interest = p*t*r
```