Math

Advanced Source Code

PFA – Power Flow Analysis of Power System in C++ Visual Sudio

Research work Nº1 – POWER I “EE-353” Introduction This is an undergraduate research work, assigned to me when I took…

Read More »
Math and others

Example of overloading the + operator in C++(Chain Concatenation)

Cstring class that supports string concatenation, ie, that joins the contents of 2 strings and adds them to another target…

Read More »
Math and others

Prime Number Detector in C++

Program that determines if an entered number is a prime number. Programa que determina si un número ingresado es un…

Read More »
Math and others

Example of object-oriented programming in C++ (Bouncing Balls)

A simple example of OOP (Object Oriented Programming), in which like some balls bouncing on the limits of our screen…

Read More »
Math and others

Random number generator in C++ (Aleator)

Three different ways to define a function that returns random numbers, in the same style as the random function. This…

Read More »
Math and others

Sudoku Magic Square in C++

Solution to the classic mathematical problem of the magic square (odd order). For those who do not know what it…

Read More »
Math and others

Roman to Arabic Numbers Converter in C++

Converts a Roman numeral to an Arabic numeral (ordinary numbering). ROMTOARA:Converts a Roman numeral to an Arabic numeral (ordinary numbering).…

Read More »
Math and others

Towers of Hanoi in C++

Classic hanoi towers algorithm solved by means of a recursive function. Developed by: JOSE LUIS DE LA CRUZ LAZARO YACSHA…

Read More »
Math and others

A C++ class for addition, difference, multiplication and inversion of matrices (CMatrix)

This example shows how to use the powerful CMatriz class to work with matrices. And show how this class can…

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