Giải phương trình bậc 1, dùng chương trình con

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ธ.ค. 2024

ความคิดเห็น • 1

  • @nhungtranthicam2766
    @nhungtranthicam2766 3 ปีที่แล้ว +1

    #include
    using namespace std;
    void nhap(float &a,float &b);
    int giaiPT(float a, float b, float &x);
    void xuat(int co,float x);
    int main()
    {
    float a,b;
    nhap(a,b);
    float x;
    int co=giaiPT(a,b,x);
    xuat(co,x);
    }
    int giaiPT(float a, float b, float &x)
    {
    if (a==0)
    if(b==0)
    return 2;
    else
    return 0;
    else
    {
    x=-b/a;
    return 1;
    }
    }
    void nhap(float &a,float &b)
    {
    cin>>a>>b;
    }
    void xuat(int co,float x)
    {
    if (co==0)
    cout