Em có bài tập giải bất phương trình ax + b > 0 bằng c++, mà làm mãi vẫn bị sai là sao vậy mấy anh, chị.
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
float a, b, x;
cin >> a;
cin >> b;
x = -b / a;
if (a != 0)
{
if (a > 0)
cout << "x>" << setprecision(2) << fixed << x << endl;
if (a < 0)
cout << "x<" << setprecision(2) << fixed << x << endl;
}
else
{
if (b > 0)
cout << "vsn" << endl;
else
cout << "vn" << endl;
}
}