Guest User

Untitled

a guest
May 25th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. program Project1;
  2.  
  3. uses
  4. SysUtils;
  5. var x,y:real;
  6. begin
  7. write('x='); readln(x);
  8. if(x>1) then y:=cos(x)/(x*x*x+3*sin(x)+8)
  9. else y:=x*x*x+3*sin(x)+8
  10. writeln('y=', y:0:3);
  11. Readln;
  12. end.
Add Comment
Please, Sign In to add comment