求解下面两个未知数的两个方程组的系统:

a1,b1,c1,a2,b2和c2由用户自己输入.
我一直试图找到问题的数学解决方案,我似乎无法走远...
到目前为止我尝试过的是:
这是正确的还是有更简单的方法来做到这一点?
当前代码:
#include <iostream>
using namespace std;
int main()
{
int a1, b1, c1, a2, b2, c2;
cout << "Enter the values for the first equation." << endl;
cout << "Enter the value for a1" << endl;
cin >> a1;
cout << "Enter the value for b1" << endl;
cin >> b1;
cout << "Enter the value for c1" << endl;
cin >> c1;
cout << "Enter the values for …Run Code Online (Sandbox Code Playgroud)