ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
#includeusing 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
#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