Advertisement
Guest User

прога комплексных чисел

a guest
Sep 23rd, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. uses Cmplx;
  2. var
  3. chisllo :complex;
  4. a.re,a.im ,b.re ,b.im :real;
  5.  
  6. begin
  7.  
  8. a.re := 1; a.im := 1;
  9.  
  10. b.re := 1; b.im := 2;
  11.  
  12. chisllo.create (a.re,b.re, a.im,b.im );
  13.  
  14. chisllo.vivod;
  15.  
  16. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement