[C++] Giải phương trình bậc 1 Ngôn ngữ lập trình: C++ Phần mềm: Visual Studio CODE: Select All #include <iostream>using namespace std;#include <string>// Giải phương trình bậc 1// aX + b = 0;// Input : 2 số thực a,b// Output : // Có 1 nghiệm duy nhất x = -b / a // VN // VSNvoid GiaiPhuongTrinhBac_1(float a, float b){ if (a == 0) { if (b == 0) { cout<< "Phuong trinh VSN"; } else { cout<< "Phuong trinh VN"; } } else { float x = float (-b / a); cout<< "Phuong trinh co nghiem duy nhat x = " + std::to_string(x); }}int main(){ float a, b; cout << "a = "; cin >> a; cout << "b = "; cin >> b; GiaiPhuongTrinhBac_1(a, b); cout << endl; system("pause");}