C++

C++ Language

Graphics

Plotting Mathematical Functions, 3d function plotter in C++(Graf 3D) Example 2, using graphics.h BGI library

3D FUNCTION PLOTTER Rotates a 3D surface z=f(x,y) randomly around each of the three axes (X,Y,Z), modeling this function as…

Read More »
Graphics

Plotting Mathematical Functions, 3d function plotter in C++(Graf 3D) Example 1, using graphics.h BGI library

3D FUNCTION PLOTTER Rotates a 3D surface z=f(x,y) randomly around each of the three axes (X,Y,Z), modeling this function as…

Read More »
Math and others

Greatest Common Divisor in C++

Function to solve the greatest common divisor of a group of numbers Developed by: JOSE LUIS DE LA CRUZ LAZARO…

Read More »
Math and others

Lectura de Números – Español in C++

This program reads an integer and returns its equivalent in letters. Exm: If I entered 3465, the program returns “three…

Read More »
VideoGames

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 »
Graphics

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 »
Math and others

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 »
Math and others

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 »
Math and others

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 »
Math and others

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 »
Back to top button