Authors
- David Erinayo Obidu
- Timileyin Bakare
- Add your clickable username here. It should point to your GitHub account.
Project solution instructions
Each folder above naviagates to a method of running this program.
Options include
- Flask
- Terminal
- Tkinter
Each folder includes a README.md for instructions on how to run program.
Problem Statement
Write a Python Program to find Armstrong number. You are supposed to create a Program to find 3 digit Armstrong number. Make a program which accepts a 3 digit number from user and check & confirms whether it is an Armstrong number or not. Proper message should be displayed as the result. Interface should be attractive and Numbers should be between 100 - 999.
Note: Armstrong number of 3 digits, the sum of cubes of each digit is equal to the number itself. For example: 153 = 111 + 555 + 333 = 1 + 125 + 27 = 153 Hence 153 is an Armstrong number.