Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fernancelot/ti-calc-python-app-standard-euclidean-algorithm

Standard Euclidean Algorithm PYTHON application for the TI-84 PLUS CE PYTHON edition calculator
https://github.com/fernancelot/ti-calc-python-app-standard-euclidean-algorithm

micropython ti-84 ti-84-plus-ce ti-84-plus-ce-t-python ti-84-programs

Last synced: 8 days ago
JSON representation

Standard Euclidean Algorithm PYTHON application for the TI-84 PLUS CE PYTHON edition calculator

Awesome Lists containing this project

README

        

**Standard Euclidean Algorithm PYTHON application for the TI-84 PLUS CE PYTHON edition calculator**

• This is a simple implementation of the Euclidean Algorithm to calculate the Greatest Common Divisor (GCD) of two integers.
• The program takes two integers as input and calculates the GCD using the Euclidean Algorithm.
• It also displays the steps involved in the calculation of the GCD.
• The main function takes user input for the two integers and calls the euclidean_algorithm function to display the results.
• The program can be run and tested with different input values to verify the correctness of the Euclidean Algorithm.
• The Euclidean Algorithm is an efficient method for finding the greatest common divisor (GCD) of two integers.
• The algorithm works by repeatedly applying the division algorithm to find the remainder of the division of two integers.
• The GCD is the last non-zero remainder obtained in the process.