C++ Programming Gallery

Tic Tac Toe 3D – Gato 3D game in C++, using graphics.h BGI library

TIC-TAC-TOE game on A 4x4x4 cube This is the famous cat game but in 3 dimensions (in a 4x4x4 cube),…

Read More »
Math and others

Calculates all real and complex roots of a polynomial of degree n in C++ (NROOTS)

Calculates all real and complex roots of a polynomial of degree n The algorithm is simple: just find any root…

Read More »
Graphics

Gamma function plotter in C++, using graphics.h BGI library

Plot Euler’s gamma(x) function, you can also use the gamma(x) function to calculate the gamma of any number. It also…

Read More »
Math and others

Text encryptor and decryptor in C++

A program that encrypts an ACSII text document, using the Gaussian function Pi(x) and the function Primo(n). Where: Pi(x) is…

Read More »
Fractals

Fractal explorer in C++ (Fractal X), using graphics.h BGI library

Mandelbrot’s Beetle Fractal Plotter Graphics the mandelbrot set in a resolution of 320x200x256, has mouse zoom, fractal animation with color…

Read More »
Graphics

2D and 3D math function plotter in C++ (GrafiCAD), using graphics.h BGI library

Function Plotter for DOS Developed by: JOSE LUIS DE LA CRUZ LAZARO YACSHA – Software & Desing, since 1999, Lima…

Read More »
Math and others

N-Queens Problem in C++: Backtracking vs. Brute Force Algorithms

How can N queens be distributed on an N*N board without attacking each other? This program shows all the possible…

Read More »
Graphics

Math function parser, with example of 2D function plotter in C++ (SFR)

This program is a demo of how to use GRAFXY.H and RSF.H to plot functions at runtime, i.e. the function…

Read More »
Back to top button