#include <bits/stdc++.h>
using namespace std;
void solveEquation(float a, float b)
{
float x;
if(a==0)
{
if(b==0)
cout<< "Many Solutions" <<endl;
else
cout<< "No Solution" <<endl;
}
else
{
x = -b / a;
cout<< fixed << setprecision(2) << x << endl;
}
}
int main()
{
float a,b;
cin >> a >> b;
solveEquation(a, b);
return 0;
}
Xin sửa giúp e lỗi này với ạ