Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 670 Bytes

File metadata and controls

22 lines (16 loc) · 670 Bytes

Solving Simultaneous Equations

This source code, written in C++, solves two simultaneous equations with two unknows. Its written in C++ using the CodeBlock editor.

The simultaanoeus equations are solved using Elimination method to solve them.

The format of the equations solved are as follows:

ax + by = c
dx + ey = f

where:

  • a,b,c,d,e and f are numbers.
  • x and y are the unknowns we are solving for.

To use this source code

  • Download CodeBlock if you don't have one yet.
  • Clone the repo to your local system
  • Use CodeBlock editor to open the folder