Guest User

Untitled

a guest
May 21st, 2012
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. program zadanie25h;
  2.  
  3. uses
  4. crt,math;
  5.  
  6. var
  7. x : real;
  8. y : real;
  9. z : real;
  10.  
  11. begin
  12. writeln('podaj x:');
  13. readln(x);
  14. writeln('podaj y:');
  15. readln(y);
  16.  
  17. z := cos(x+sqr(y));
  18. writeln('Twoj wynik to:', z:0:2);
  19. readln;
  20.  
  21. end.
Advertisement
Add Comment
Please, Sign In to add comment