Check whether a given number is Armstrong number or not. An Armstrong number of three digits is an integer such that the sum of the cubes of its digits is equal to the number itself. ie: 153. 1^3 + 5^3 + 3^3 = 153
Display Fibonacci series upto given limit.
Game of Life is an Interesting program which simulates Conway's Game of Life Cellular Automation. The output is simply based on Conway's 2D universe where cells live and die accordingly.
Leap year checking programs explains simple logic for checking whether a given year is Leap year or not. This program also includes useful information abour Leap year in general, along with small explainations of how Calendars work.
NOTE : This is one of the logics (a simple one) there are other ways too.
Swap two integers without using Third variable
Powerset is a simple program that creates all the sub-sets of a given set (includign NULL set)
Check whether a given positive number is Prime or not. (Negative numbers are NOT considered as Prime or Not Prime)
Actually 3 numbers interchanging without using a fourth variable. The program is simple as well as stupid at the same time. However, it can be used in selective circumstances.
The Classic TIC TAC TOE mini game with one of the simplest logic. Have fun marking your X's and O's on the grid and strive to achieve victory in this timeless battle of wits.