Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 4.55 KB

README.md

File metadata and controls

12 lines (10 loc) · 4.55 KB

math-playground

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