jrajan14 / CPP_Random_Learning_Programs

a collection of diverse and practical C++ programs that I've crafted to explore various concepts and solve real-world challenges. From algorithmic problem-solving to application development, each program showcases my journey through the world of C++. Join me as I delve into the intricacies of coding, learning, and innovation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

C++ Programs (Random Programs for learners)

Armstrong Number

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

Fibonacci Series

Display Fibonacci series upto given limit.

Game of Life

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 Check

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.

Number Swapping

Swap two integers without using Third variable

Powerset

Powerset is a simple program that creates all the sub-sets of a given set (includign NULL set)

Prime Number Check

Check whether a given positive number is Prime or not. (Negative numbers are NOT considered as Prime or Not Prime)

Three Number Swapping

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.

Tic Tac Toe

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.

About

a collection of diverse and practical C++ programs that I've crafted to explore various concepts and solve real-world challenges. From algorithmic problem-solving to application development, each program showcases my journey through the world of C++. Join me as I delve into the intricacies of coding, learning, and innovation.


Languages

Language:C++ 100.0%