Guest User

Untitled

a guest
Apr 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. program giai_pt_bac_nhat;
  2. uses crt;
  3. var x,a,b : real;
  4. begin
  5. clrscr;
  6. writeln('nhap vao he so a,b');
  7. readln(a,b);
  8. x:=-b/a;
  9. if a <> 0 then
  10. writeln('phuong trinh co nghiem ',x:4:2) else
  11. begin
  12. if b = 0 then writeln('phuong trinh co vo so nghiem')
  13. else writeln('phuong trinh vo nghiem');
  14. end;
  15. readln;
  16. end.
Add Comment
Please, Sign In to add comment