fork download
  1. #include <iostream>
  2. #include <iomanip> // Thư viện dùng để định dạng số thập phân
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7. int a, b;
  8. cin >> a >> b;
  9.  
  10. if (a == 0) {
  11. if (b == 0) {
  12. cout << "ALL" << endl; // Vô số nghiệm
  13. } else {
  14. cout << "INVALID" << endl; // Vô nghiệm
  15. }
  16. } else {
  17. double x = -(double)b / a; // Tính nghiệm
  18. cout << fixed << setprecision(6) << x << endl; // In nghiệm với 6 chữ số sau dấu phẩy
  19. }
  20.  
  21. return 0;
  22. }
  23.  
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
-0.000164