This repository showcases diverse implementations of mathematical concepts in programming languages, providing insightful programs for various numerical tasks.
Program | Description | C | Python |
---|---|---|---|
armstrong number | This program finds whether the number is an Armstrong number. | C | |
prime number finder | This program finds whether the number is prime number. | C | Python |
nth fibionacci number | This program finds nth fibionacci number. | C | |
nth prime number | This program finds nth prime number. | C | |
manual sqrt | This program finds root of number step by step with babylonian/newtonian method | C | Python |
my log | Thi program finds ln(x) | Python |