C++ Programming Gallery

Nibbles (snake) game in C++, using graphics.h BGI library

SKILL GAME (1 or 2 players) Now you can play using a joystick and keyboard control is disabled. Includes sources…

Read More »

Advanced Math Function Plotter, 2D Function Plotter in C++ (METPRO), using graphics.h BGI library

Draw Windows with WinBGI The METPRO program is an example of the use of windows.h. What it does is to…

Read More »

Numerical Methods for Finding Roots of a Function in C++

Is solved using the following numerical method algorithms, coded in C++ language: Bisection False position Secant method Newton-Raphson Fixed point…

Read More »

Numerical Methods for Solving Ordinary Equations – ODEs in C++

An ordinary differential equation – ODE, is solved using the following numerical method algorithms, coded in C++ language: Euler Modified…

Read More »

Numerical Integration in C++

Is solved using the following numerical method algorithms, coded in C++ language: Trapezoidal Rule Simpson’s Rule Developed by: JOSE LUIS…

Read More »

Matrix Numerical Methods for Solving Systems of Linear Equations in C++

A system of equations is solved using the following algorithms in numerical methods, coded in C++ language: Gauss method –…

Read More »

Example of using the mouse in C++ WinBGI graphical mode (Mouse BGI), using graphics.h BGI library

Utility that allows to see the mouse cursor in bgi mode either in 16 colors or 256 colors, also uses…

Read More »

Calculate and plot the Fourier series of a function in C++, using graphics.h BGI library

It transforms a periodic function f(t), to its respective Fourier series (The same function but represented in an infinite sum…

Read More »

Mandelbrot fractal explorer in C++ (DMandel), using graphics.h BGI library

At the request of several friends, I upload this program that diagrams the Mandelbrot set, using a short, simple and…

Read More »

Draw Electric Potential in C++, using graphics.h BGI library

It plots the distribution of potentials between two parallel plates atdifferent potentials, like a capacitor. Using a recursive algorithminstead of…

Read More »
Back to top button