News Ticker

Menu

( C++ ) Giải PT Bậc Hai


Ten: Hoang Minh Tuan
Lop: GS19TH1
*/
#include<iostream>
#include<math.h>
using namespace std;

class PTBacHai{
private: double a, b, c;
public:
void setA(double a){
this->a = a;
}

void setB(double b){
this->b = b;
}

void setC(double c){
this->c = c;
}

double getA(){
return a;
}

double getB(){
return b;
}

double getC(){
return c;
}

PTBacHai(){
setA(a);
setB(b);
setC(c);
}

void inPutKey(){
double a, b, c;

cout << "input a: "; cin >> a; this->setA(a);

cout << "input b: "; cin >> b; this->setB(b);

cout << "input c: "; cin >> c; this->setC(c);
}

void test(double a, double b, double c){
double delta = (b*b) - (4*a*c);
if(delta < 0) cout << "Phuong Trinh Vo Nghiem" << endl;
else if(delta == 0){
double ngh = -b / (2*a);
cout << "Phuong Trinh Co Ngiem Kep X= " << ngh << endl;
}
else{
double x1 = (-b + sqrt(delta)) / 2*a;
double x2 = (-b - sqrt(delta)) / 2*a;
cout << "Phuong Trinh Co 2 Nghiem Phan Biet X1= " << x1 << " \nX2= " << x2 << endl;
}

}
};

int main(){
PTBacHai giai;
giai.inPutKey();
giai.test(giai.getA(), giai.getB(), giai.getA());
return 0;
}

Share This:

Post Tags:

Welcome To Task Marks

I'm Task Marks. Tôi là chủ trang web này, trang này tôi dùng để chia sẽ tài liệu và những thứ linh tinh khác. Cảm ơn mọi người đã ghé thăm trang web của chúng tôi.Nếu có thắt mắt xin vui lòng liên hệ
Mail: devnguhoc@gmail.com

No Comment to " ( C++ ) Giải PT Bậc Hai "

  • To add an Emoticons Show Icons
  • To add code Use [pre]code here[/pre]
  • To add an Image Use [img]IMAGE-URL-HERE[/img]
  • To add Youtube video just paste a video link like http://www.youtube.com/watch?v=0x_gnfpL3RM