Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- int giaiPTBac2 ( float a, float b, float c, float &x,float &y)
- {
- int so_nghiem = 0;
- float delta = 0;
- if ( a == 0 )
- {
- //nếu a != 0, chuyển về giải pt bậc 1 bx + c = 0
- x1 = giaiPTBac1( b,c);
- so_nghiem = 1;
- }
- else
- {
- //tính delta
- delta = ...;
- //vô nghiệm
- if ( delta == 0 )
- {
- so_nghiem = 0;//nếu không có nghiệm thì số nghiệm là 0
- }
- //nghiệm kép
- else if ( delta == 1 )
- {
- so_nghiem = 1;
- x1 = ....;
- }
- //có 2 nghiệm
- else
- {
- so_nghiem = 2;
- x1 = ..;//tính nghiệm 1
- x2 = ...;//tính nghiệm 2
- }
- }
- //trả về số nghiệm của phương trình
- return so_nghiem;
- }//kết thúc chương trình
- *************************
- void main()
- {
- float x1 = 0, x2 = 0;
- int n = giaiPTBac2( 5,6,2,x1,x2);
- if ( n == 0)
- printf ( "pt vo nghiem");
- else (n == 1 )
- printf ( "phuong trinh co 1 nghiem x = %f", x1 );
- else ( n == 2 )
- printf ( "...");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement