Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- program zadanie25h;
- uses
- crt,math;
- var
- x : real;
- y : real;
- z : real;
- begin
- writeln('podaj x:');
- readln(x);
- writeln('podaj y:');
- readln(y);
- z := cos(x+sqr(y));
- writeln('Twoj wynik to:', z:0:2);
- readln;
- end.
Advertisement
Add Comment
Please, Sign In to add comment