C++ Programming Gallery

Challenge 1 – Why don’t we get: Successfully? in C++

Difficulty x10x5 This Challenge was proposed for the now defunct C/C++ programming list CWORLD in 1999.The source code of the…

Read More »

Challenge 0 – Why doesn’t the operation give the correct value? in C++

Difficulty x10x5 This Challenge was proposed for the now defunct C/C++ programming list CWORLD in 1999.The source code of the…

Read More »

Musical Keyboard in C++, using graphics.h BGI library

A musical keyboard is simulated using the computer keyboard. Most important features: The keyboard is drawn on the screen, using…

Read More »

Sheet Music Player in C++, using graphics.h BGI library

Allows you to read a score from a txt file with the format of the QBASIC play function, and then…

Read More »

Plot Conics, Circle, Parabola, Ellipse, Hyperbola (Conics) in C++, using graphics.h BGI library

Program that graphs conics in their general form ( AX^2+ BXY+CY^2+DX+EY+F = 0), that is to say parabolas, ellipses, hyperbolas,…

Read More »

Plotting Mathematical Functions, 3d function plotter in C++(Graf 3D) Example 3, 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 »

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 »

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 »

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 »

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